summaryrefslogtreecommitdiffstats
path: root/dovecot/dovecot.sh
diff options
context:
space:
mode:
Diffstat (limited to 'dovecot/dovecot.sh')
-rw-r--r--dovecot/dovecot.sh36
1 files changed, 0 insertions, 36 deletions
diff --git a/dovecot/dovecot.sh b/dovecot/dovecot.sh
deleted file mode 100644
index b7555fe..0000000
--- a/dovecot/dovecot.sh
+++ /dev/null
@@ -1,36 +0,0 @@
-#!/bin/bash
-
-. /etc/rc.conf
-. /etc/rc.d/functions
-
-PID=`pidof -o %PPID /usr/sbin/dovecot`
-case "$1" in
- start)
- stat_busy "Starting Dovecot"
- [ -z "$PID" ] && /usr/sbin/dovecot
- if [ $? -gt 0 ]; then
- stat_fail
- else
- add_daemon dovecot
- stat_done
- fi
- ;;
- stop)
- stat_busy "Stopping Dovecot"
- [ ! -z "$PID" ] && kill $PID &> /dev/null
- if [ $? -gt 0 ]; then
- stat_fail
- else
- rm_daemon dovecot
- stat_done
- fi
- ;;
- restart)
- $0 stop
- sleep 2
- $0 start
- ;;
- *)
- echo "usage: $0 {start|stop|restart}"
-esac
-exit 0