Viitor_upstart/etc/init/sendsignals.conf

14 lines
285 B
Plaintext
Raw Normal View History

description "Send all remaining prozesses the kill signal"
author "Harald Kueller <harald.kueller@compuextreme.de>"
version 1.0
emits none special
start on stopped udev
script
echo -n "sending all remaining processes the TERM signal"
killall -15
sleep 3
killall -9
end script