From 410d179a07c782bb0795f002d7b08d0a2e29b976 Mon Sep 17 00:00:00 2001 From: Alexandre Date: Sun, 13 Mar 2022 11:55:24 +0100 Subject: [PATCH] Add dirname to systemd-templates paths --- install.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/install.sh b/install.sh index 11f4e76..3a4fd8e 100755 --- a/install.sh +++ b/install.sh @@ -5,13 +5,13 @@ source "$(dirname "$0")/variables.conf" # TODO handle non-Systemd systems echo "Copying Systemd units to system directory..." -sudo cp systemd-templates/conf-sync.service /etc/systemd/system/ +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 - sudo cp systemd-templates/dns-update.timer /etc/systemd/system/conf-sync.timer + sudo cp $(dirname "$0")/systemd-templates/dns-update.timer /etc/systemd/system/conf-sync.timer else - sudo cp systemd-templates/dns-update.timer /etc/systemd/system/conf-sync.timer + sudo cp $(dirname "$0")/systemd-templates/dns-update.timer /etc/systemd/system/conf-sync.timer fi echo "Reloading Systemd..."