From 0523c113b09d65d8daf49e6a4b26150a3481aeaf Mon Sep 17 00:00:00 2001 From: Alexandre Date: Sun, 13 Mar 2022 12:46:15 +0100 Subject: [PATCH] install.sh: correct if statement --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 5ba3e02..355e1b4 100755 --- a/install.sh +++ b/install.sh @@ -8,7 +8,7 @@ echo "Copying Systemd units to system directory..." sudo cp $(dirname "$0")/systemd-templates/conf-sync.service /etc/systemd/system/ sudo sed -i -e "s/PH_USER/$(whoami)/g" /etc/systemd/system/conf-sync.service sudo sed -i -e "s:PH_DIRECTORY:$(pwd):g" /etc/systemd/system/conf-sync.service -if [ $client_type = "server" ]; then +if [ "$client_type" = "server" ]; then sudo cp $(dirname "$0")/systemd-templates/dns-update.timer /etc/systemd/system/conf-sync.timer else sudo cp $(dirname "$0")/systemd-templates/dns-update.timer /etc/systemd/system/conf-sync.timer