]> git.pld-linux.org Git - packages/proftpd.git/blame_incremental - proftpd.init
- rel 2
[packages/proftpd.git] / proftpd.init
... / ...
CommitLineData
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/ftpd/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.
23if 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
28else
29 exit 0
30fi
31
32start() {
33 # Check if the service is already running?
34 if [ ! -f /var/lock/subsys/proftpd ]; then
35 msg_starting ProFTPD
36 daemon 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
44stop() {
45 # Stop daemons.
46 if [ -f /var/lock/subsys/proftpd ]; then
47 msg_stopping ProFTPD
48 killproc proftpd
49 rm -f /var/lock/subsys/proftpd /var/run/proftpd* > /dev/null 2>&1
50 else
51 msg_not_running ProFTPD
52 fi
53}
54
55condrestart() {
56 if [ -f /var/lock/subsys/proftpd ]; then
57 stop
58 start
59 else
60 msg_not_running ProFTPD
61 RETVAL=$1
62 fi
63}
64
65RETVAL=0
66# See how we were called.
67case "$1" in
68 start)
69 start
70 ;;
71 stop)
72 stop
73 ;;
74 restart)
75 stop
76 start
77 ;;
78 try-restart)
79 condrestart 0
80 ;;
81 force-reload)
82 condrestart 7
83 ;;
84 status)
85 status proftpd
86 exit $?
87 ;;
88 *)
89 msg_usage "$0 {start|stop|restart|try-restart|force-reload|status}"
90 exit 3
91esac
92
93exit $RETVAL
This page took 0.060756 seconds and 4 git commands to generate.