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 | 4 |
1 files changed, 4 insertions, 0 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 @@ -44,20 +44,24 @@ case $1 in *) echo "Unknown processor type -`module_id`-!" ;; esac if [ -x $OPIEDIR/bin/opie-login ]; then $OPIEDIR/bin/opie-login 2>/dev/null >/dev/null & else $OPIEDIR/bin/qpe 2>/dev/null >/dev/null & fi ;; 'stop') echo "Killing Opie..." + 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 |