conf-sync/install.sh

24 lines
856 B
Bash
Raw Normal View History

2022-03-13 12:18:06 +01:00
#!/usr/bin/env bash
2022-03-12 18:15:04 +01:00
source "$(dirname "$0")/variables.conf"
# TODO handle non-Systemd systems
echo "Copying Systemd units to system directory..."
2022-03-13 11:55:24 +01:00
sudo cp $(dirname "$0")/systemd-templates/conf-sync.service /etc/systemd/system/
2022-03-12 18:15:04 +01:00
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
2022-03-13 12:46:15 +01:00
if [ "$client_type" = "server" ]; then
2022-03-13 12:49:18 +01:00
sudo cp $(dirname "$0")/systemd-templates/conf-sync-server.timer /etc/systemd/system/conf-sync.timer
2022-03-12 18:15:04 +01:00
else
2022-03-13 12:49:18 +01:00
sudo cp $(dirname "$0")/systemd-templates/conf-sync-desktop.timer /etc/systemd/system/conf-sync.timer
2022-03-12 18:15:04 +01:00
fi
echo "Reloading Systemd..."
sudo systemctl daemon-reload
echo "Enabling timer (not starting it, either do it manually or reboot)..."
sudo systemctl enable conf-sync.timer
echo "Finished install. Exiting..."
exit 0