more robust Apache restart
This commit is contained in:
parent
8511a05a72
commit
bd85a89d4c
|
@ -102,12 +102,14 @@ if [ "$1" = "configure" ]; then
|
|||
if [ "$RET" = "true" ]; then
|
||||
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
|
||||
|
|
Loading…
Reference in New Issue