]> git.pld-linux.org Git - packages/proftpd.git/blame - proftpd.init
- use functions, add try-restart
[packages/proftpd.git] / proftpd.init
CommitLineData
093b00e1
JR
1#!/bin/sh
2#
3# proftpd ProFTPD ftp server
4#
5# chkconfig: 345 85 15
d857a352 6# description: ProFTPD is a highly configurable ftp daemon for unix and unix-like \
093b00e1
JR
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.
133452f3 23if is_yes "${NETWORKING}"; then
db26a22d 24 if [ ! -f /var/lock/subsys/network -a "$1" != stop -a "$1" != status ]; then
133452f3 25 msg_network_down proftpd
26 exit 1
27 fi
28else
29 exit 0
093b00e1
JR
30fi
31
5e6ce55d 32start() {
093b00e1 33 # Check if the service is already running?
133452f3 34 if [ ! -f /var/lock/subsys/proftpd ]; then
093b00e1
JR
35 msg_starting ProFTPD
36 daemon proftpd $PROFTPD_OPTS
133452f3 37 RETVAL=$?
38 [ $RETVAL -eq 0 ] && touch /var/lock/subsys/proftpd
093b00e1 39 else
133452f3 40 msg_already_running ProFTPD
093b00e1 41 fi
5e6ce55d
ER
42}
43
44stop() {
133452f3 45 # Stop daemons.
093b00e1 46 if [ -f /var/lock/subsys/proftpd ]; then
133452f3 47 msg_stopping ProFTPD
48 killproc proftpd
49 rm -f /var/lock/subsys/proftpd /var/run/proftpd* > /dev/null 2>&1
50 else
ded964d2 51 msg_not_running ProFTPD
093b00e1 52 fi
5e6ce55d
ER
53}
54
55
56condrestart() {
57 if [ -f /var/lock/subsys/proftpd ]; then
58 stop
59 start
60 else
61 msg_not_running proftpd
62 RETVAL=$1
63 fi
64}
65
66RETVAL=0
67# See how we were called.
68case "$1" in
69 start)
70 start
71 ;;
72 stop)
73 stop
74 ;;
75 restart)
76 stop
77 start
78 ;;
79 try-restart)
80 condrestart 0
81 ;;
82 force-reload)
83 condrestart 7
093b00e1
JR
84 ;;
85 status)
86 status proftpd
87 exit $?
88 ;;
093b00e1 89 *)
5e6ce55d 90 msg_usage "$0 {start|stop|restart|try-restart|force-reload|status}"
f27b8a10 91 exit 3
093b00e1
JR
92esac
93
94exit $RETVAL
This page took 0.059147 seconds and 4 git commands to generate.