changed killall to pkill

This commit is contained in:
Tyler Jones 2017-05-10 09:09:11 -07:00
parent c7712aa9a2
commit 7bd25d99f3
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ case "$1" in
;;
stop)
echo "Stopping listen-for-shutdown.py"
killall listen-for-shutdown.py
pkill -f /usr/local/bin/listen-for-shutdown.py
;;
*)
echo "Usage: /etc/init.d/listen-for-shutdown.sh {start|stop}"