From ac91fd150217aff89c827d820126674d08f0d338 Mon Sep 17 00:00:00 2001 From: tuxwarrior Date: Mon, 6 May 2024 17:26:33 -0500 Subject: [PATCH] u --- dots/bin/syncDirSetup.sh | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/dots/bin/syncDirSetup.sh b/dots/bin/syncDirSetup.sh index b96501a..3053b1c 100755 --- a/dots/bin/syncDirSetup.sh +++ b/dots/bin/syncDirSetup.sh @@ -62,16 +62,14 @@ the_file=/etc/fstab if [ -f "${the_file}" ]; then if ! more ${the_file} | grep 'syncDir' then - echo + echo "" echo "" | sudo tee -a ${the_file} echo "# auto mount syncDir" | sudo tee -a ${the_file} echo "${src_dir} ${trg_dir} auto defaults,nofail,nobootwait,bind 0 2" | sudo tee -a ${the_file} - echo - echo "auto mount of syncDir added to '${the_file}'" + echo "> auto mount of syncDir added to '${the_file}'" else - echo - echo "auto mount of syncDir already existed in '${the_file}'" + echo "> auto mount of syncDir already existed in '${the_file}'" fi fi