1
0
mirror of https://github.com/pi-hole/pi-hole synced 2024-11-17 21:59:55 +00:00

Improve FTL's service script

This commit is contained in:
DL6ER 2017-04-12 23:13:18 +02:00
parent 1d64b614c7
commit 3eacfa9831
No known key found for this signature in database
GPG Key ID: 00135ACBD90B28DD

View File

@ -17,7 +17,7 @@ get_pid() {
}
is_running() {
[ -f "$PIDFILE" ] && ps $(get_pid) > /dev/null 2>&1
[ -f "$PIDFILE" ] && ps "$(get_pid)" > /dev/null 2>&1
}
# Start the service
@ -36,8 +36,8 @@ start() {
# Stop the service
stop() {
if is_running; then
kill $(get_pid)
for i in {1..10}; do
kill "$(get_pid)"
for i in {1..5}; do
if ! is_running; then
break
fi
@ -48,7 +48,8 @@ stop() {
echo
if is_running; then
echo "Not stopped; may still be shutting down or shutdown may have failed"
echo "Not stopped; may still be shutting down or shutdown may have failed, killing now"
kill -9 "$(get_pid)"
exit 1
else
echo "Stopped"
@ -61,16 +62,13 @@ stop() {
### main logic ###
case "$1" in
start)
start
;;
stop)
stop
;;
status)
status pihole-FTL
;;
restart|reload|condrestart)
start|restart|reload|condrestart)
stop
start
;;