diff options
author | James Meyer <james.meyer@operamail.com> | 2012-09-05 18:29:20 (GMT) |
---|---|---|
committer | James Meyer <james.meyer@operamail.com> | 2012-09-05 18:29:20 (GMT) |
commit | 8212680e79996335e7546ab3910effd0db26f233 (patch) | |
tree | e7406351d224916d3362344b16af46dbd8c6b2ba /build_tools/archiso/archiso/archiso_shutdown | |
parent | 3930cb05d2f26bb3af98591f171c79143c901b65 (diff) | |
download | linhes_dev-8212680e79996335e7546ab3910effd0db26f233.zip |
archiso: new way to build iso
Diffstat (limited to 'build_tools/archiso/archiso/archiso_shutdown')
-rw-r--r-- | build_tools/archiso/archiso/archiso_shutdown | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/build_tools/archiso/archiso/archiso_shutdown b/build_tools/archiso/archiso/archiso_shutdown new file mode 100644 index 0000000..85cce59 --- /dev/null +++ b/build_tools/archiso/archiso/archiso_shutdown @@ -0,0 +1,40 @@ +#!/bin/ash + +# /oldroot depends on things inside /oldroot/run/archiso... +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/archiso/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/archiso/cowspace + +# Unmount boot device if needed (no copytoram=y used) +if [[ ! -d /oldrun/archiso/copytoram ]]; then + if [[ -d /oldrun/archiso/img_dev ]]; then + umount /oldrun/archiso/img_dev + else + umount /oldrun/archiso/bootmnt + fi + if [[ -f /oldrun/archiso/nbd_client.pid ]]; then + nbd-client -d /dev/nbd0 + 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 |