index : mkinitcpio-archiso32 | |
Archlinux32 initcpio scripts used by archiso | gitolite user |
summaryrefslogtreecommitdiff |
author | Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar> | 2012-08-25 15:14:51 -0300 |
---|---|---|
committer | Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar> | 2012-08-25 15:14:51 -0300 |
commit | 6369815d5721e2908174d9ddc76bd9ffe32570b4 (patch) | |
tree | 06e3d7a2c9b8c8a4172d97ab90a9ed9eb8550879 /install/archiso_shutdown | |
parent | d93c9c21873ddc269f8cde7bd39e3e54650f2489 (diff) |
-rw-r--r-- | install/archiso_shutdown | 20 |
diff --git a/install/archiso_shutdown b/install/archiso_shutdown new file mode 100644 index 0000000..5ae976a --- /dev/null +++ b/install/archiso_shutdown @@ -0,0 +1,20 @@ +#!/bin/bash + +build() { + add_binary cp + + add_runscript + + add_file /usr/lib/initcpio/archiso_shutdown /shutdown +} + +help() { + cat <<HELPEOF +This hook will create a shutdown initramfs in /run/initramfs +that we can pivot to on shutdown in order to unmount / and +and others mount points, dm-snapshot devices and loopback devices. +Mostly usefull for dm-snapshot persistent. +HELPEOF +} + +# vim: set ft=sh ts=4 sw=4 et: |