diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2010-12-30 22:57:30 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2010-12-30 22:57:30 +0100 |
commit | 0a96e4538fe6552dd75aa939b249030f4cdfd77f (patch) | |
tree | 8c998c4ab78ea4b60d433847a9632466b9a814a4 /package/p910nd | |
parent | 845317b460ee99ad633534cad4de72404af7e30b (diff) |
fix startup scripts, fix stop routine
Diffstat (limited to 'package/p910nd')
-rw-r--r-- | package/p910nd/files/p910nd.init | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/p910nd/files/p910nd.init b/package/p910nd/files/p910nd.init index 20e872c42..c2884caee 100644 --- a/package/p910nd/files/p910nd.init +++ b/package/p910nd/files/p910nd.init @@ -11,10 +11,10 @@ autostart) exec sh $0 start ;; start) - p910nd $p910nd_flags + /usr/sbin/p910nd $p910nd_flags ;; stop) - pkill p9100d + kill $(pgrep -f /usr/sbin/p910d) ;; restart) sh $0 stop |