]> git.pld-linux.org Git - packages/dovecot.git/blob - dovecot.init
Release 3 (by relup.sh)
[packages/dovecot.git] / dovecot.init
1 #!/bin/sh
2 # IMAP Daemon
3 #
4 # chkconfig:    345 80 20
5 # description:  IMAP Daemon
6
7 # Source function library
8 . /etc/rc.d/init.d/functions
9
10 # Get network config
11 . /etc/sysconfig/network
12
13 # Get service config
14 [ -f /etc/sysconfig/dovecot ] && . /etc/sysconfig/dovecot
15
16 # Check that networking is up.
17 if is_yes "${NETWORKING}"; then
18         if [ ! -f /var/lock/subsys/network -a "$1" != stop -a "$1" != status ]; then
19                 msg_network_down "Dovecot"
20                 exit 1
21         fi
22 else
23         exit 0
24 fi
25
26 start() {
27         # Check if the service is already running?
28         if [ ! -f /var/lock/subsys/dovecot ]; then
29                 msg_starting "Dovecot"
30                 daemon /usr/sbin/dovecot
31                 RETVAL=$?
32                 [ $RETVAL -eq 0 ] && touch /var/lock/subsys/dovecot
33         else
34                 msg_already_running "Dovecot"
35         fi
36 }
37
38 stop() {
39         if [ -f /var/lock/subsys/dovecot ]; then
40                 msg_stopping "Dovecot"
41                 killproc --pidfile dovecot/master.pid dovecot
42                 rm -f /var/lock/subsys/dovecot
43         else
44                 msg_not_running "Dovecot"
45         fi
46 }
47
48 reload() {
49         if [ -f /var/lock/subsys/dovecot ]; then
50                 msg_reloading dovecot
51                 killproc --pidfile dovecot/master.pid docevot -HUP
52                 RETVAL=$?
53         else
54                 msg_not_running "Dovecot"
55                 RETVAL=7
56         fi
57 }
58
59 condrestart() {
60         if [ -f /var/lock/subsys/dovecot ]; then
61                 stop
62                 start
63         else
64                 msg_not_running "Dovecot"
65                 RETVAL=$1
66         fi
67 }
68
69 RETVAL=0
70 # See how we were called.
71 case "$1" in
72   start)
73         start
74         ;;
75   stop)
76         stop
77         ;;
78   restart)
79         stop
80         start
81         ;;
82   try-restart)
83         condrestart 0
84         ;;
85   reload|force-reload)
86         reload
87         ;;
88   status)
89         status dovecot
90         exit $?
91         ;;
92   *)
93         msg_usage "$0 {start|stop|restart|try-restart|reload|force-reload|status}"
94         exit 3
95 esac
96
97 exit $RETVAL
This page took 0.041379 seconds and 3 git commands to generate.