Use SIGKILL to stop qubes_firewall service

This commit is contained in:
Tomasz Sterna 2011-03-11 19:40:23 +01:00
parent bba0e6e1ef
commit e2d52a27e8

View File

@ -21,7 +21,7 @@ start()
stop() stop()
{ {
echo -n "Stopping Qubes Firewall monitor:" echo -n "Stopping Qubes Firewall monitor:"
kill $(cat $PIDFILE) 2>/dev/null && success || failure kill -9 $(cat $PIDFILE) 2>/dev/null && success || failure
echo "" echo ""
return 0 return 0
} }