From 17d9a5cedc45e24092b6de2c9f18cb6c7263d850 Mon Sep 17 00:00:00 2001 From: Alexandre Date: Sat, 20 Nov 2021 16:11:51 +0100 Subject: [PATCH] Correct units linking --- setup.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.sh b/setup.sh index 4da613c..96d35fd 100644 --- a/setup.sh +++ b/setup.sh @@ -49,7 +49,8 @@ get_conf() { set_conf() { echo "Setting configuration" ln -s $sync_directory_path/*.service $systemd_units_path/ - ln -s $sync_directory_path/*.timer $systemd_units_path/ + ln -s $sync_directory_path/conf-sync-server.timer $systemd_units_path/conf-sync.timer + ln -s $sync_directory_path/restart-upmpdcli.timer $systemd_units_path/ systemctl daemon-reload systemctl enable conf-sync.timer mpd.service upmpdcli.service restart-upmpdcli.timer }