]> pilppa.org Git - familiar-h63xx-build.git/blob - org.handhelds.familiar/packages/initscripts/initscripts-1.0/sendsigs
OE tree imported from monotone branch org.openembedded.oz354fam083 at revision 8b12e3...
[familiar-h63xx-build.git] / org.handhelds.familiar / packages / initscripts / initscripts-1.0 / sendsigs
1 #! /bin/sh
2 #
3 # sendsigs      Kill all remaining processes.
4 #
5 # Version:      @(#)sendsigs  2.75  22-Jun-1998  miquels@cistron.nl
6 #
7
8 PATH=/sbin:/bin:/usr/sbin:/usr/bin
9
10 # Kill all processes.
11 echo "Sending all processes the TERM signal..."
12 killall5 -15
13 sleep 5
14 echo "Sending all processes the KILL signal..."
15 killall5 -9
16
17 : exit 0