forked from coolaj86/goldilocks.js
40 lines
1.0 KiB
Bash
40 lines
1.0 KiB
Bash
|
safe_copy_config()
|
||
|
{
|
||
|
src=$1
|
||
|
dst=$2
|
||
|
mkdir -p $(dirname "$dst")
|
||
|
if [ -f "$dst" ]; then
|
||
|
$sudo_cmd rsync -av "$src" "$dst.latest"
|
||
|
# TODO edit config file with $my_user and $my_group
|
||
|
if [ "$(cat $dst)" == "$(cat $dst.latest)" ]; then
|
||
|
$sudo_cmd rm $dst.latest
|
||
|
else
|
||
|
echo "MANUAL INTERVENTION REQUIRED: check the systemd script update and manually decide what you want to do"
|
||
|
echo "diff $dst $dst.latest"
|
||
|
$sudo_cmd chown -R root:root "$dst.latest"
|
||
|
fi
|
||
|
else
|
||
|
$sudo_cmd rsync -av --ignore-existing "$src" "$dst"
|
||
|
fi
|
||
|
$sudo_cmd chown -R root:root "$dst"
|
||
|
$sudo_cmd chmod 644 "$dst"
|
||
|
}
|
||
|
|
||
|
installable=""
|
||
|
if [ -d "$my_root/etc/systemd/system" ]; then
|
||
|
install_for_systemd
|
||
|
installable="true"
|
||
|
fi
|
||
|
if [ -d "/Library/LaunchDaemons" ]; then
|
||
|
install_for_launchd
|
||
|
installable="true"
|
||
|
fi
|
||
|
if [ -z "$installable" ]; then
|
||
|
echo ""
|
||
|
echo "Unknown system service init type. You must install as a system service manually."
|
||
|
echo '(please file a bug with the output of "uname -a")'
|
||
|
echo ""
|
||
|
fi
|
||
|
|
||
|
install_service
|