summaryrefslogtreecommitdiff
path: root/root
authorsandman <sandman>2002-08-04 02:28:09 (UTC)
committer sandman <sandman>2002-08-04 02:28:09 (UTC)
commita8c65999503fa9ff34db3069c53bbc1685b521ec (patch) (unidiff)
treee56efb282ebbd9276448dddcb2a2c3fa9c1ef8be /root
parent8fd0780faa16abbcf7db9220af1bc333ae484ec8 (diff)
downloadopie-a8c65999503fa9ff34db3069c53bbc1685b521ec.zip
opie-a8c65999503fa9ff34db3069c53bbc1685b521ec.tar.gz
opie-a8c65999503fa9ff34db3069c53bbc1685b521ec.tar.bz2
Forgot this file in the last commit (fixes for SIGTERM handling)
Diffstat (limited to 'root') (more/less context) (ignore whitespace changes)
-rwxr-xr-xroot/etc/init.d/opie6
1 files changed, 5 insertions, 1 deletions
diff --git a/root/etc/init.d/opie b/root/etc/init.d/opie
index eed69c2..09aebe0 100755
--- a/root/etc/init.d/opie
+++ b/root/etc/init.d/opie
@@ -53,7 +53,11 @@ case $1 in
53 ;; 53 ;;
54'stop') 54'stop')
55 echo "Killing Opie..." 55 echo "Killing Opie..."
56 killproc qpe 56 if [ -f /var/run/opie.pid ]; then
57 kill -TERM `cat /var/run/opie.pid`
58 else
59 killproc qpe
60 fi
57 killproc opie-login 61 killproc opie-login
58 ;; 62 ;;
59*) 63*)