summaryrefslogtreecommitdiff
path: root/testing/cryptsetup/encrypt_install
diff options
context:
space:
mode:
authorroot <root@rshg047.dnsready.net>2011-05-15 22:39:31 +0000
committerroot <root@rshg047.dnsready.net>2011-05-15 22:39:31 +0000
commita45aa8f19ea32f45610dafabfc06c8b7d1ed5cfe (patch)
tree3855efd25da6fab2bbaf889a2090a44a9faab93f /testing/cryptsetup/encrypt_install
parente69c538fc7af5a9861c7688dd15913082d978180 (diff)
Sun May 15 22:39:30 UTC 2011
Diffstat (limited to 'testing/cryptsetup/encrypt_install')
-rw-r--r--testing/cryptsetup/encrypt_install26
1 files changed, 26 insertions, 0 deletions
diff --git a/testing/cryptsetup/encrypt_install b/testing/cryptsetup/encrypt_install
new file mode 100644
index 000000000..9446e6864
--- /dev/null
+++ b/testing/cryptsetup/encrypt_install
@@ -0,0 +1,26 @@
+# vim: set ft=sh:
+
+install ()
+{
+ if [ -z "${CRYPTO_MODULES}" ]; then
+ MODULES=" dm-crypt $(all_modules "/crypto/") "
+ else
+ MODULES=" dm-crypt ${CRYPTO_MODULES} "
+ fi
+ FILES=""
+ SCRIPT="encrypt"
+ add_dir "/dev/mapper"
+ [ -f "/sbin/cryptsetup" ] && add_binary "/sbin/cryptsetup" "/sbin/cryptsetup"
+ [ -f "/usr/sbin/cryptsetup" ] && add_binary "/usr/sbin/cryptsetup" "/sbin/cryptsetup"
+ add_binary "/sbin/dmsetup"
+ add_file "/lib/udev/rules.d/10-dm.rules"
+ add_file "/lib/udev/rules.d/13-dm-disk.rules"
+ add_file "/lib/udev/rules.d/95-dm-notify.rules"
+}
+
+help ()
+{
+cat<<HELPEOF
+ This hook allows for an encrypted root device.
+HELPEOF
+}