summaryrefslogtreecommitdiff
path: root/community-staging/courier-mta/esmtpd.rc.d
diff options
context:
space:
mode:
authorMichał Masłowski <mtjm@mtjm.eu>2012-02-08 12:08:30 +0100
committerMichał Masłowski <mtjm@mtjm.eu>2012-02-08 12:08:30 +0100
commit75895d1cbf6e8648913c18c8ffbe6ff83a6b1682 (patch)
tree9ef98f8ab809321342a510378a59655f0e86708b /community-staging/courier-mta/esmtpd.rc.d
parentdb8bea8ccc6a8480770f1a9681d87a439db224fd (diff)
Remove unused files.
Diffstat (limited to 'community-staging/courier-mta/esmtpd.rc.d')
-rw-r--r--community-staging/courier-mta/esmtpd.rc.d45
1 files changed, 0 insertions, 45 deletions
diff --git a/community-staging/courier-mta/esmtpd.rc.d b/community-staging/courier-mta/esmtpd.rc.d
deleted file mode 100644
index dbaa9d680..000000000
--- a/community-staging/courier-mta/esmtpd.rc.d
+++ /dev/null
@@ -1,45 +0,0 @@
-#!/bin/bash
-
-. /etc/rc.conf
-. /etc/rc.d/functions
-
-case "$1" in
- start)
-
- [ -d /var/run/courier ] || mkdir -p /var/run/courier
- chown courier:courier /var/run/courier
-
- if ck_daemon authdaemond; then
- echo "ERROR: authdaemond is not running"
- stat_fail
- exit 1
- fi
-
- stat_busy "Starting Courier esmtpd"
- /usr/sbin/esmtpd start
- if [ $? -gt 0 ]; then
- stat_fail
- else
- add_daemon esmtpd
- stat_done
- fi
- ;;
- stop)
- stat_busy "Stopping Courier esmtpd"
- /usr/sbin/esmtpd stop > /dev/null
- if [ $? -gt 0 ]; then
- stat_fail
- else
- rm_daemon esmtpd
- stat_done
- fi
- ;;
- restart)
- $0 stop
- sleep 1
- $0 start
- ;;
- *)
- echo "usage: $0 {start|stop|restart}"
-esac
-exit 0