summaryrefslogtreecommitdiffstats
path: root/package/proftpd/S50proftpd
blob: 550e0a6ad0116d9bb4f78646febc954127895a2e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#!/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