Don't use PID file but rather "pidof pihole-FTL" for detecting if another process is already running

pull/1379/head
DL6ER 7 years ago
parent 3eacfa9831
commit fcd92d27f7
No known key found for this signature in database
GPG Key ID: 00135ACBD90B28DD

@ -13,11 +13,11 @@ FTLUSER=pihole
PIDFILE=/var/run/pihole-FTL.pid
get_pid() {
cat "$PIDFILE"
pidof "pihole-FTL"
}
is_running() {
[ -f "$PIDFILE" ] && ps "$(get_pid)" > /dev/null 2>&1
ps "$(get_pid)" > /dev/null 2>&1
}
# Start the service

Loading…
Cancel
Save