Compare commits
2 Commits
8a9dd0768d
...
914b5a88e4
Author | SHA1 | Date | |
---|---|---|---|
914b5a88e4 | |||
a10e5b42e5 |
36
install.sh
36
install.sh
@ -14,19 +14,37 @@ fi
|
|||||||
|
|
||||||
if [ -e /run/systemd/system ]; then # service manager is Systemd
|
if [ -e /run/systemd/system ]; then # service manager is Systemd
|
||||||
echo "Copying Systemd units to system directory..."
|
echo "Copying Systemd units to system directory..."
|
||||||
sudo cp $run_directory/systemd-templates/conf-sync.service /etc/systemd/system/
|
if [[ $user != 'root' ]]; then
|
||||||
sudo sed -i -e "s/PH_USER/$(whoami)/g" /etc/systemd/system/conf-sync.service
|
sudo cp systemd-templates/conf-sync.service /etc/systemd/system/
|
||||||
sudo sed -i -e "s:PH_DIRECTORY:$(pwd):g" /etc/systemd/system/conf-sync.service
|
sudo sed -i -e "s/PH_USER/$(whoami)/g" /etc/systemd/system/conf-sync.service
|
||||||
if [ "$client_type" = "server" ]; then
|
sudo sed -i -e "s:PH_DIRECTORY:$(pwd):g" /etc/systemd/system/conf-sync.service
|
||||||
sudo cp $run_directory/systemd-templates/conf-sync-server.timer /etc/systemd/system/conf-sync.timer
|
if $client_type == "server"; then
|
||||||
|
sudo cp systemd-templates/conf-sync-server.timer /etc/systemd/system/conf-sync.timer
|
||||||
|
else
|
||||||
|
sudo cp systemd-templates/conf-sync-desktop.timer /etc/systemd/system/conf-sync.timer
|
||||||
|
fi
|
||||||
else
|
else
|
||||||
sudo cp $run_directory/systemd-templates/conf-sync-desktop.timer /etc/systemd/system/conf-sync.timer
|
cp systemd-templates/conf-sync.service /etc/systemd/system/
|
||||||
|
sed -i -e "s/PH_USER/$(whoami)/g" /etc/systemd/system/conf-sync.service
|
||||||
|
sed -i -e "s:PH_DIRECTORY:$(pwd):g" /etc/systemd/system/conf-sync.service
|
||||||
|
if $client_type == "server"; then
|
||||||
|
cp systemd-templates/conf-sync-server.timer /etc/systemd/system/conf-sync.timer
|
||||||
|
else
|
||||||
|
cp systemd-templates/conf-sync-desktop.timer /etc/systemd/system/conf-sync.timer
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo "Reloading Systemd..."
|
echo "Reloading Systemd..."
|
||||||
sudo systemctl daemon-reload
|
if [[ $user != 'root' ]]; then
|
||||||
|
sudo systemctl daemon-reload
|
||||||
|
else
|
||||||
|
systemctl daemon-reload
|
||||||
|
fi
|
||||||
echo "Enabling timer (not starting it, either do it manually or reboot)..."
|
echo "Enabling timer (not starting it, either do it manually or reboot)..."
|
||||||
sudo systemctl enable conf-sync.timer
|
if [[ $user != 'root' ]]; then
|
||||||
|
sudo systemctl enable conf-sync.timer
|
||||||
|
else
|
||||||
|
systemctl enable conf-sync.timer
|
||||||
|
fi
|
||||||
elif [ "$(uname)" = "OpenBSD" ]; then
|
elif [ "$(uname)" = "OpenBSD" ]; then
|
||||||
echo "ERROR: OpenBSD is not yet supported, but this is planned."
|
echo "ERROR: OpenBSD is not yet supported, but this is planned."
|
||||||
exit 0
|
exit 0
|
||||||
|
Loading…
Reference in New Issue
Block a user