summaryrefslogtreecommitdiff
path: root/package/proftpd/files/proftpd.init
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2010-12-30 22:57:30 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2010-12-30 22:57:30 +0100
commit0a96e4538fe6552dd75aa939b249030f4cdfd77f (patch)
tree8c998c4ab78ea4b60d433847a9632466b9a814a4 /package/proftpd/files/proftpd.init
parent845317b460ee99ad633534cad4de72404af7e30b (diff)
fix startup scripts, fix stop routine
Diffstat (limited to 'package/proftpd/files/proftpd.init')
-rw-r--r--package/proftpd/files/proftpd.init4
1 files changed, 2 insertions, 2 deletions
diff --git a/package/proftpd/files/proftpd.init b/package/proftpd/files/proftpd.init
index bf3dc0efe..813f20730 100644
--- a/package/proftpd/files/proftpd.init
+++ b/package/proftpd/files/proftpd.init
@@ -12,10 +12,10 @@ autostart)
;;
start)
[ -f /etc/proftpd.conf ] || exit
- proftpd
+ /usr/sbin/proftpd
;;
stop)
- pkill proftpd
+ kill $(pgrep -f /usr/sbin/proftpd)
;;
restart)
sh $0 stop