]> TLD Linux GIT Repositories - packages/proftpd.git/blob - proftpd.init
- updated to 1.3.7f
[packages/proftpd.git] / proftpd.init
1 #!/bin/sh
2 #
3 # proftpd       ProFTPD ftp server
4 #
5 # chkconfig:    345 85 15
6 # description:  ProFTPD is a highly configurable ftp daemon for unix and unix-like \
7 #               operating systems.
8 # processname:  proftpd
9 # pidfile:      /var/run/proftpd.pid
10 # config:       /etc/proftpd/proftpd.conf
11
12
13 # Source function library
14 . /etc/rc.d/init.d/functions
15
16 # Get network config
17 . /etc/sysconfig/network
18
19 # Get service config
20 [ -f /etc/sysconfig/proftpd ] && . /etc/sysconfig/proftpd
21
22 # Check that networking is up.
23 if is_yes "${NETWORKING}"; then
24         if [ ! -f /var/lock/subsys/network -a "$1" != stop -a "$1" != status ]; then
25                 msg_network_down proftpd
26                 exit 1
27         fi
28 else
29         exit 0
30 fi
31
32 start() {
33         # Check if the service is already running?
34         if [ ! -f /var/lock/subsys/proftpd ]; then
35                 msg_starting ProFTPD
36                 daemon /usr/sbin/proftpd $PROFTPD_OPTS
37                 RETVAL=$?
38                 [ $RETVAL -eq 0 ] && touch /var/lock/subsys/proftpd
39         else
40                 msg_already_running ProFTPD
41         fi
42 }
43
44 stop() {
45         if [ -f /var/lock/subsys/proftpd ]; then
46                 msg_stopping ProFTPD
47                 killproc proftpd
48                 rm -f /var/lock/subsys/proftpd /var/run/proftpd/* >/dev/null 2>&1
49         else
50                 msg_not_running ProFTPD
51         fi
52 }
53
54 condrestart() {
55         if [ -f /var/lock/subsys/proftpd ]; then
56                 stop
57                 start
58         else
59                 msg_not_running ProFTPD
60                 RETVAL=$1
61         fi
62 }
63
64 RETVAL=0
65 # See how we were called.
66 case "$1" in
67   start)
68         start
69         ;;
70   stop)
71         stop
72         ;;
73   restart)
74         stop
75         start
76         ;;
77   try-restart)
78         condrestart 0
79         ;;
80   force-reload)
81         condrestart 7
82         ;;
83   status)
84         status proftpd
85         exit $?
86         ;;
87   *)
88         msg_usage "$0 {start|stop|restart|try-restart|force-reload|status}"
89         exit 3
90 esac
91
92 exit $RETVAL