more robust reload

This commit is contained in:
Roland Gruber 2016-04-02 15:33:19 +02:00
parent bd85a89d4c
commit bd93daa397
1 changed files with 12 additions and 10 deletions

View File

@ -37,12 +37,14 @@ if [ -f /usr/share/debconf/confmodule ]; then
set -e
for server in $restart; do
server=${server%,}
if [ `which invoke-rc.d` ]; then
if [ `which systemctl` ]; then
if [ "`systemctl is-active ${server}.service`" = "active" ]; then
systemctl reload ${server}.service
fi
elif [ `which invoke-rc.d` ]; then
invoke-rc.d $server reload
elif [ `which service` ]; then
service $server reload
elif [ `which systemctl` ]; then
systemctl reload ${server}.service
fi
done
fi