From 4b7c6d365b8ac0c515594da09a6f812f434a3291 Mon Sep 17 00:00:00 2001 From: "Kevin Veen-Birkenbach [aka. Frantz]" Date: Sat, 26 Sep 2020 19:09:07 +0200 Subject: [PATCH] Solved bug --- scripts/image/setup.sh | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/scripts/image/setup.sh b/scripts/image/setup.sh index 2d72bb5..3ff8239 100644 --- a/scripts/image/setup.sh +++ b/scripts/image/setup.sh @@ -418,6 +418,12 @@ fi if [ "$encrypt_system" == "y" ] then # @see https://gist.github.com/gea0/4fc2be0cb7a74d0e7cc4322aed710d38 + ########## + #target_username="alarm" + #encrypted_partition_path="/dev/mmcblk1p3" + #target_hostname="test_host" + #echo '$standart_luks_password' | sudo cryptsetup luksClose root + ########## rescue_suffix=".$(date +%s).rescue" search_hooks="HOOKS=(base udev autodetect modconf block filesystems keyboard fsck)" replace_hooks="HOOKS=(base udev autodetect modconf block sleep netconf dropbear encryptssh filesystems keyboard fsck)" @@ -453,7 +459,7 @@ if [ "$encrypt_system" == "y" ] echo "mount $root_mapper_path /mnt &&" echo "rsync --info=progress2 -axHAX / /mnt/ &&" echo "cp -v $fstab_path $fstab_rescue_path &&" - echo "echo '$root_mapper_path / ext4 defaults,noatime 0 1' >> $fstab_path &&" + echo "echo $root_mapper_path' / ext4 defaults,noatime 0 1' >> $fstab_path &&" echo "echo \"Content of $fstab_path:\" && cat \"$fstab_path\" &&" echo "cp -v $crypttab_path $crypttab_rescue_path &&" echo "echo 'root $encrypted_partition_path none luks' >> $crypttab_path &&"