Add TODO on timer choice

This commit is contained in:
Alexandre CATTEAU 2022-09-22 18:19:19 +02:00
parent e3e6a73f95
commit 105057bff3
2 changed files with 2 additions and 1 deletions

View File

@ -20,3 +20,4 @@ Version 2 implementation works roughly as follows:
### TODO
* Add install support for OpenBSD
* Replace desktop/server timer choice in one line

View File

@ -24,7 +24,7 @@ if [ -e /run/systemd/system ]; then # service manager is Systemd
$sudo cp $run_directory/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:$run_directory:g" /etc/systemd/system/conf-sync.service
if [ "$client_type" = "server" ]; then
if [ "$client_type" = "server" ]; then # TODO could be replaced in one line: cp conf-sync-$client_type
$sudo cp $run_directory/systemd-templates/conf-sync-server.timer /etc/systemd/system/conf-sync.timer
else
$sudo cp $run_directory/systemd-templates/conf-sync-desktop.timer /etc/systemd/system/conf-sync.timer