]> git.pld-linux.org Git - packages/proftpd.git/blame - proftpd.init
- rel 2
[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
5e6ce55d
ER
55condrestart() {
56 if [ -f /var/lock/subsys/proftpd ]; then
57 stop
58 start
59 else
5a433993 60 msg_not_running ProFTPD
5e6ce55d
ER
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
093b00e1
JR
83 ;;
84 status)
85 status proftpd
86 exit $?
87 ;;
093b00e1 88 *)
5e6ce55d 89 msg_usage "$0 {start|stop|restart|try-restart|force-reload|status}"
f27b8a10 90 exit 3
093b00e1
JR
91esac
92
93exit $RETVAL
This page took 0.238038 seconds and 4 git commands to generate.