hc
2023-02-13 e440ec23c5a540cdd3f7464e8779219be6fd3d95
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 "" HUP
trap "" TERM
test -f $DAEMON || exit 0
[ ! -d /var/run/proftpd ] && mkdir /var/run/proftpd
[ ! -f /var/log/wtmp ] && touch /var/log/wtmp
 
start() {
   printf "Starting ProFTPD: "
   $DAEMON
   if [ $? != 0 ]; then
       echo "FAILED"
       exit 1
   else
       echo "done"
   fi
}
 
stop() {
   printf "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