diff options
-rwxr-xr-x | share/hydractl/provision | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/share/hydractl/provision b/share/hydractl/provision index 4a270ed..4c1822e 100755 --- a/share/hydractl/provision +++ b/share/hydractl/provision @@ -274,7 +274,7 @@ echo "# <target name> <source device> <key file> <options>" > /tmp/debootstra if [ "$encrypt" == "y" ]; then cat > /tmp/debootstrap/etc/crypttab <<-EOF -root /dev/mapper/vg-root none luks,cipher=aes-cbc-essiv:sha256 +root /dev/mapper/vg-root none luks,cipher=aes-cbc-essiv:sha256 EOF fi @@ -292,7 +292,7 @@ fi if [ "$swap" != "0" ]; then cat >> /tmp/debootstrap/etc/crypttab <<-EOF -cswap $swap_device /dev/random swap,cipher=aes-cbc-essiv:sha256 +cswap $swap_device /dev/random swap,cipher=aes-cbc-essiv:sha256 EOF fi |