Compare commits

..

5 Commits

3 changed files with 9 additions and 6 deletions

View File

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

View File

@ -1,6 +1,7 @@
#!/usr/bin/env bash #!/usr/bin/env bash
source "$(dirname "$0")/variables.conf" run_directory=$(dirname $(readlink -f "$0"))
source "$run_directory/variables.conf"
for dir in $sync_directory/*; do for dir in $sync_directory/*; do
git -C $dir rev-parse 2>/dev/null >/dev/null git -C $dir rev-parse 2>/dev/null >/dev/null

View File

@ -1,6 +1,6 @@
#!/usr/bin/env bash #!/usr/bin/env bash
run_directory=$(dirname "$0") run_directory=$(dirname $(readlink -f "$0"))
user=$(whoami) user=$(whoami)
source "$run_directory/variables.conf" source "$run_directory/variables.conf"
@ -21,13 +21,13 @@ 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 systemd-templates/conf-sync.service /etc/systemd/system/ $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_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 $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 systemd-templates/conf-sync-server.timer /etc/systemd/system/conf-sync.timer $sudo cp $run_directory/systemd-templates/conf-sync-server.timer /etc/systemd/system/conf-sync.timer
else else
$sudo cp systemd-templates/conf-sync-desktop.timer /etc/systemd/system/conf-sync.timer $sudo cp $run_directory/systemd-templates/conf-sync-desktop.timer /etc/systemd/system/conf-sync.timer
fi fi
echo "Reloading Systemd..." echo "Reloading Systemd..."
$sudo systemctl daemon-reload $sudo systemctl daemon-reload