author | sandman <sandman> | 2002-08-04 02:28:09 (UTC) |
---|---|---|
committer | sandman <sandman> | 2002-08-04 02:28:09 (UTC) |
commit | a8c65999503fa9ff34db3069c53bbc1685b521ec (patch) (side-by-side diff) | |
tree | e56efb282ebbd9276448dddcb2a2c3fa9c1ef8be /root/etc | |
parent | 8fd0780faa16abbcf7db9220af1bc333ae484ec8 (diff) | |
download | opie-a8c65999503fa9ff34db3069c53bbc1685b521ec.zip opie-a8c65999503fa9ff34db3069c53bbc1685b521ec.tar.gz opie-a8c65999503fa9ff34db3069c53bbc1685b521ec.tar.bz2 |
Forgot this file in the last commit (fixes for SIGTERM handling)
-rwxr-xr-x | root/etc/init.d/opie | 6 |
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 @@ -50,13 +50,17 @@ case $1 in $OPIEDIR/bin/qpe 2>/dev/null >/dev/null & fi ;; 'stop') echo "Killing Opie..." - killproc qpe + if [ -f /var/run/opie.pid ]; then + kill -TERM `cat /var/run/opie.pid` + else + killproc qpe + fi killproc opie-login ;; *) echo "usage: $0 { start | stop }" ;; esac |