summaryrefslogtreecommitdiff
path: root/parabolaiso/initcpio/script
diff options
context:
space:
mode:
authorDavid P <megver83@parabola.nu>2021-08-02 18:24:56 -0400
committerDavid P <megver83@parabola.nu>2021-08-02 18:24:56 -0400
commit8b185792cce1c515d985e327741660207dd5a110 (patch)
treef3ec438c0fbcafee646fefa634edd3c113211b98 /parabolaiso/initcpio/script
parente09959ed0aba19e6b7f6789c1c57632414c5ec4b (diff)
sync with archiso
archiso: 0f3a83a (HEAD -> master, origin/master, origin/HEAD) Merge branch 'issues/47' e589101 (origin/issues/47) gitlab-ci: Call renamed check target 874166e Makefile: Remove mkinitcpio-archiso specific targets 571ea81 README.rst: Remove initcpio, fix formatting 75d36d2 Remove mkinitcpio-archiso files Signed-off-by: David P <megver83@parabola.nu>
Diffstat (limited to 'parabolaiso/initcpio/script')
-rw-r--r--parabolaiso/initcpio/script/parabolaiso_shutdown41
1 files changed, 0 insertions, 41 deletions
diff --git a/parabolaiso/initcpio/script/parabolaiso_shutdown b/parabolaiso/initcpio/script/parabolaiso_shutdown
deleted file mode 100644
index d12cd90..0000000
--- a/parabolaiso/initcpio/script/parabolaiso_shutdown
+++ /dev/null
@@ -1,41 +0,0 @@
-#!/bin/ash
-#
-# SPDX-License-Identifier: GPL-3.0-or-later
-
-# /oldroot depends on things inside /oldroot/run/parabolaiso...
-mkdir /oldrun
-mount -n --move /oldroot/run /oldrun
-
-# Unmount all mounts now.
-umount "$(mount | awk '$3 ~/^\/oldroot/ {print $3}' | sort -r)"
-
-# Remove all dm-snapshot devices.
-dmsetup remove_all
-
-# Remove all loopback devices.
-for _lup in $(grep ^/dev/loop /oldrun/parabolaiso/used_block_devices | tac); do
- if ! losetup -d -- "${_lup}" 2> /dev/null; then
- umount -d -- "${_lup}"
- fi
-done
-
-# Unmount the space used to store *.cow.
-umount /oldrun/parabolaiso/cowspace
-
-# Unmount boot device if needed (no copytoram=y used)
-if [ ! -d /oldrun/parabolaiso/copytoram ]; then
- if [ -d /oldrun/parabolaiso/img_dev ]; then
- umount /oldrun/parabolaiso/img_dev
- else
- umount /oldrun/parabolaiso/bootmnt
- fi
-fi
-
-# reboot / poweroff / halt, depending on the argument passed by init
-# if something invalid is passed, we halt
-case "$1" in
- reboot|poweroff|halt) "$1" -f ;;
- *) halt -f;;
-esac
-
-# vim: set ft=sh: