e1b76e26cf
Tue Feb 17 2004 Jeremy Katz <katzj@redhat.com> - 0.99.10.4-3 - restart properly if it dies (#115594) Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com> - rebuilt
65 lines
917 B
Bash
Executable File
65 lines
917 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# /etc/rc.d/init.d/dovecot
|
|
#
|
|
# Starts the dovecot daemon
|
|
#
|
|
# chkconfig: - 54 54
|
|
# description: Dovecot Imap Server
|
|
# processname: dovecot
|
|
# Source function library.
|
|
. /etc/init.d/functions
|
|
|
|
test -x /usr/sbin/dovecot || exit 0
|
|
|
|
RETVAL=0
|
|
prog="Dovecot Imap"
|
|
|
|
start() {
|
|
echo -n $"Starting $prog: "
|
|
daemon /usr/sbin/dovecot
|
|
RETVAL=$?
|
|
[ $RETVAL -eq 0 ] && touch /var/lock/subsys/dovecot
|
|
echo
|
|
}
|
|
|
|
stop() {
|
|
echo -n $"Stopping $prog: "
|
|
killproc /usr/sbin/dovecot
|
|
RETVAL=$?
|
|
[ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/dovecot
|
|
echo
|
|
}
|
|
|
|
#
|
|
# See how we were called.
|
|
#
|
|
case "$1" in
|
|
start)
|
|
start
|
|
;;
|
|
stop)
|
|
stop
|
|
;;
|
|
reload|restart)
|
|
stop
|
|
start
|
|
RETVAL=$?
|
|
;;
|
|
condrestart)
|
|
if [ -f /var/lock/subsys/dovecot ]; then
|
|
stop
|
|
start
|
|
fi
|
|
;;
|
|
status)
|
|
status /usr/sbin/dovecot
|
|
RETVAL=$?
|
|
;;
|
|
*)
|
|
echo $"Usage: $0 {condrestart|start|stop|restart|reload|status}"
|
|
exit 1
|
|
esac
|
|
|
|
exit $RETVAL
|