summaryrefslogtreecommitdiff
path: root/package/proftpd/files/proftpd.init
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2014-03-07 12:48:01 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2014-03-07 12:48:01 +0100
commit3fe732e577313be28abbb99a636779a9debe400c (patch)
treed37f3e105c10037db1cc82596462c85e0902ad12 /package/proftpd/files/proftpd.init
parent0e8c55d0649610a3848bac209ac5054701869e52 (diff)
parent5101b72fac2c9a6971a0c7d2fe6bbd318e9678ab (diff)
Merge branch 'master' of git+ssh://openadk.org/git/openadk
Diffstat (limited to 'package/proftpd/files/proftpd.init')
-rw-r--r--package/proftpd/files/proftpd.init29
1 files changed, 0 insertions, 29 deletions
diff --git a/package/proftpd/files/proftpd.init b/package/proftpd/files/proftpd.init
deleted file mode 100644
index 8e605652d..000000000
--- a/package/proftpd/files/proftpd.init
+++ /dev/null
@@ -1,29 +0,0 @@
-#!/bin/sh
-#PKG proftpd
-#INIT 60
-. /etc/rc.conf
-
-case $1 in
-autostop) ;;
-autostart)
- test x"${proftpd:-NO}" = x"NO" && exit 0
- exec sh $0 start
- ;;
-start)
- [ -f /etc/proftpd.conf ] || exit
- /usr/sbin/proftpd
- ;;
-stop)
- kill $(pgrep -f /usr/sbin/proftpd)
- ;;
-restart)
- sh $0 stop
- sleep 1
- sh $0 start
- ;;
-*)
- echo "Usage: $0 {start | stop | restart}"
- exit 1
- ;;
-esac
-exit $?