]> git.pld-linux.org Git - packages/pure-ftpd.git/blob - pure-ftpd.init
- addes uploadscript feature support
[packages/pure-ftpd.git] / pure-ftpd.init
1 #!/bin/sh
2 #
3 # pureftpd      PureFTPD server
4 #
5 # chkconfig:    345 85 15
6 # description:  PureFTPD is fast, production-quality, standard-conformant FTP server
7 #
8
9 # Source function library
10 . /etc/rc.d/init.d/functions
11
12 # Get network config
13 . /etc/sysconfig/network
14
15 # Get service config
16 [ -f /etc/sysconfig/pure-ftpd ] && . /etc/sysconfig/pure-ftpd
17
18 # Check for available parsers
19 if [ -x /usr/sbin/pure-config ] ; then
20         CFG=/usr/sbin/pure-config
21 elif [ -x /usr/sbin/pure-config.pl -a -x /usr/bin/perl ] ; then
22         CFG=/usr/sbin/pure-config.pl
23 elif [ -x /usr/sbin/pure-config.py -a -x /usr/bin/python ] ; then
24         CFG=/usr/sbin/pure-config.py
25 else
26         echo 'Error: pure-config{,.pl,.py} not found. Giving up.'
27         exit 1
28 fi
29
30 # Check that networking is up.
31 if is_yes "${NETWORKING}"; then
32         if [ ! -f /var/lock/subsys/network -a "$1" != stop -a "$1" != status ]; then
33                 msg_network_down pure-ftpd
34                 exit 1
35         fi
36 else
37         exit 0
38 fi
39
40 RETVAL=0
41 # See how we were called.
42 case "$1" in
43   start)
44         # Check if the service is already running?
45         if [ ! -f /var/lock/subsys/pure-ftpd ]; then
46                 msg_starting pure-ftpd
47                 rm -f /var/run/pure-ftpd/client*
48                 if [ x"$CFG" = "x/usr/sbin/pure-config" ] ; then
49                         daemon /usr/sbin/pure-ftpd \
50                                 $(/usr/sbin/pure-config -f /etc/ftpd/pureftpd.conf) \
51                                 --daemonize
52                         RETVAL=$?
53                 else
54                         daemon $CFG /etc/ftpd/pureftpd.conf --daemonize
55                         RETVAL=$?
56                 fi
57                 
58                 if [ -n "$UPLOADSCRIPT" ]; then
59                         msg_starting pure-uploadscript
60                         UPLOADSCRIPTOPTS="-B -r $UPLOADSCRIPT"
61                         [ -n "$UPLOADSCRIPT_UID" ] && UPLOADSCRIPTOPTS="$UPLOADSCRIPTOPTS -u $UPLOADSCRIPT_UID"
62                         [ -n "$UPLOADSCRIPT_GID" ] && UPLOADSCRIPTOPTS="$UPLOADSCRIPTOPTS -g $UPLOADSCRIPT_GID"
63                         daemon /usr/sbin/pure-uploadscript $UPLOADSCRIPTOPTS
64                         RETVAL=$(($RETVAL+$?))
65                 fi
66
67                 [ $RETVAL -eq 0 ] && touch /var/lock/subsys/pure-ftpd
68         else
69                 msg_already_running pure-ftpd
70         fi
71         ;;
72   stop)
73         # Stop daemons.
74         if [ -f /var/lock/subsys/pure-ftpd ]; then
75                 if [ -n "$UPLOADSCRIPT" ]; then
76                     msg_stopping pure-uploadscript
77                     killproc pure-uploadscript
78                 fi
79
80                 msg_stopping pure-ftpd
81                 killproc pure-ftpd
82                 
83                 rm -f /var/lock/subsys/pure-ftpd > /dev/null 2>&1
84         else
85                 msg_not_running pure-ftpd
86         fi
87         ;;
88   status)
89         status pure-ftpd
90         status pure-uploadscript
91         RETVAL=$?
92         if [ $RETVAL -eq 0 ]; then
93                 pure-ftpwho
94         fi
95         ;;
96   restart|force-reload)
97         $0 stop
98         $0 start
99         exit $?
100         ;;
101   *)
102         msg_usage "$0 {start|stop|restart|force-reload|status}"
103         exit 3
104         ;;
105 esac
106
107 exit $RETVAL
This page took 0.048289 seconds and 3 git commands to generate.