From e5d0d45d2f42935ed85e55068181f6e9cb7e9b15 Mon Sep 17 00:00:00 2001 From: "Kevin Veen-Birkenbach [aka. Frantz]" Date: Thu, 1 Oct 2020 12:54:18 +0200 Subject: [PATCH] Removed dangerous ' --- scripts/image/setup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/image/setup.sh b/scripts/image/setup.sh index f73cd38..b3f89b1 100644 --- a/scripts/image/setup.sh +++ b/scripts/image/setup.sh @@ -462,7 +462,7 @@ if [ "$encrypt_system" == "y" ] 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 '$destination_encrypted_partition_path' none luks' >> $crypttab_path &&" + echo "echo 'root $destination_encrypted_partition_path none luks' >> $crypttab_path &&" echo "echo \"Content of $crypttab_path:\$(cat \"$crypttab_path\")\" &&" #boot.txt just works with raspberry pi 3 @todo Needs to be implemented for arch raspbery pi 4 echo "cp -v $boot_txt_path $boot_txt_rescue_path &&"