summaryrefslogtreecommitdiff
path: root/testing/vsftpd/vsftpd.d
diff options
context:
space:
mode:
authorNicolas Reynolds <fauno@kiwwwi.com.ar>2011-07-25 11:34:48 -0300
committerNicolas Reynolds <fauno@kiwwwi.com.ar>2011-07-25 11:34:48 -0300
commitf8f8c2edc0a58f29e716f32453ee296980faef03 (patch)
tree36550328b2ffc701ee93ee0d3f19f11d972e850e /testing/vsftpd/vsftpd.d
parent8b3071c77c79bbf0f373ca9b8ce0795c55d03669 (diff)
parentc52a1a6eb4ad278a7b6d9eeeb9c7c88f73ca8d8c (diff)
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts: community/angband/PKGBUILD community/bashburn/PKGBUILD community/qgis/PKGBUILD core/libldap/PKGBUILD core/tcp_wrappers/PKGBUILD extra/openldap/PKGBUILD extra/speedtouch/PKGBUILD libre/kernel26-libre/PKGBUILD
Diffstat (limited to 'testing/vsftpd/vsftpd.d')
-rw-r--r--testing/vsftpd/vsftpd.d67
1 files changed, 0 insertions, 67 deletions
diff --git a/testing/vsftpd/vsftpd.d b/testing/vsftpd/vsftpd.d
deleted file mode 100644
index 27310855c..000000000
--- a/testing/vsftpd/vsftpd.d
+++ /dev/null
@@ -1,67 +0,0 @@
-#!/bin/bash
-
-daemon_name=vsftpd
-
-. /etc/rc.conf
-. /etc/rc.d/functions
-
-get_pid() {
- pidof -o %PPID $daemon_name
-}
-
-case "$1" in
- start)
- stat_busy "Starting $daemon_name daemon"
-
- PID=$(get_pid)
- if [ -z "$PID" ]; then
- [ -f /var/run/$daemon_name.pid ] && rm -f /var/run/$daemon_name.pid
- # RUN
- $daemon_name &
- #
- if [ $? -gt 0 ]; then
- stat_fail
- exit 1
- else
- echo $(get_pid) > /var/run/$daemon_name.pid
- add_daemon $daemon_name
- stat_done
- fi
- else
- stat_fail
- exit 1
- fi
- ;;
-
- stop)
- stat_busy "Stopping $daemon_name daemon"
- PID=$(get_pid)
- # KILL
- [ ! -z "$PID" ] && kill $PID &> /dev/null
- #
- if [ $? -gt 0 ]; then
- stat_fail
- exit 1
- else
- rm -f /var/run/$daemon_name.pid &> /dev/null
- rm_daemon $daemon_name
- stat_done
- fi
- ;;
-
- restart)
- $0 stop
- sleep 3
- $0 start
- ;;
-
- status)
- stat_busy "Checking $daemon_name status";
- ck_status $daemon_name
- ;;
-
- *)
- echo "usage: $0 {start|stop|restart|status}"
-esac
-
-exit 0