install.sh: correct if statement

This commit is contained in:
Alexandre CATTEAU 2022-03-13 12:46:15 +01:00
parent b007eb3488
commit 0523c113b0

View File

@ -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