summaryrefslogtreecommitdiffstats
path: root/package/proftpd/init-proftpd
diff options
context:
space:
mode:
author"Steven J. Hill" <sjhill@realitydiluted.com>2007-05-09 22:48:41 +0000
committer"Steven J. Hill" <sjhill@realitydiluted.com>2007-05-09 22:48:41 +0000
commit6b00c90d709a01822027fb9986ec8ace605dd991 (patch)
tree247dda891d7c16580a7d274411581c519d01c2db /package/proftpd/init-proftpd
parent448153a06a443ad61f3df88408edf3a7da98ea0c (diff)
downloadbuildroot-novena-6b00c90d709a01822027fb9986ec8ace605dd991.tar.gz
buildroot-novena-6b00c90d709a01822027fb9986ec8ace605dd991.zip
Rename all INIT scripts to have the numerical prefixes to easily see the start-up order.
Diffstat (limited to 'package/proftpd/init-proftpd')
-rwxr-xr-xpackage/proftpd/init-proftpd47
1 files changed, 0 insertions, 47 deletions
diff --git a/package/proftpd/init-proftpd b/package/proftpd/init-proftpd
deleted file mode 100755
index 550e0a6ad..000000000
--- a/package/proftpd/init-proftpd
+++ /dev/null
@@ -1,47 +0,0 @@
-#!/bin/sh
-
-DAEMON=/usr/sbin/proftpd
-trap "" 1
-trap "" 15
-test -f $DAEMON || exit 0
-[ ! -d /var/run/proftpd ] && mkdir /var/run/proftpd
-[ ! -f /var/log/wtmp ] && touch /var/log/wtmp
-
-start() {
- echo -n "Starting ProFTPD: "
- $DAEMON
- if [ $? != 0 ]; then
- echo "FAILED"
- exit 1
- else
- echo "done"
- fi
-}
-
-stop() {
- echo -n "Stopping ProFTPD: "
- killall proftpd
- echo "done"
-}
-
-case "$1" in
- start)
- start
- ;;
-
- stop)
- stop
- ;;
-
- restart)
- stop
- start
- ;;
-
- *)
- echo "Usage: /etc/init.d/S50proftpd {start|stop|restart}"
- exit 1
- ;;
-esac
-
-exit 0