update symlinks too, follow up to ed21517

This commit is contained in:
j 2016-06-13 10:28:57 +01:00
parent 437c19f64c
commit 542fe8a860
1 changed files with 7 additions and 5 deletions

12
ctl
View File

@ -41,11 +41,13 @@ if [ "$action" = "install" ]; then
BASE=`pwd`
if [ -x /bin/systemctl ]; then
if [ -d /etc/systemd/system/ ]; then
rm -f /lib/systemd/system/pandora.service \
/lib/systemd/system/pandora-cron.service \
/lib/systemd/system/pandora-encoding.service \
/lib/systemd/system/pandora-tasks.service \
/lib/systemd/system/pandora-websocketd.service
for service in $SERVICES; do
if [ -e /lib/systemd/system/${service}.service ]; then
rm -f /lib/systemd/system/${service}.service \
/etc/systemd/system/multi-user.target.wants/${service}.service
fi
done
cp $BASE/etc/systemd/system/*.service /etc/systemd/system/
cp $BASE/etc/tmpfiles.d/pandora.conf /etc/tmpfiles.d/
systemd-tmpfiles --create /etc/tmpfiles.d/pandora.conf >/dev/null || true