summaryrefslogtreecommitdiff
path: root/community-testing/mailman/mailman.rc
diff options
context:
space:
mode:
Diffstat (limited to 'community-testing/mailman/mailman.rc')
-rw-r--r--community-testing/mailman/mailman.rc29
1 files changed, 0 insertions, 29 deletions
diff --git a/community-testing/mailman/mailman.rc b/community-testing/mailman/mailman.rc
deleted file mode 100644
index 79c1cd661..000000000
--- a/community-testing/mailman/mailman.rc
+++ /dev/null
@@ -1,29 +0,0 @@
-#!/bin/bash
-
-. /etc/rc.conf
-. /etc/rc.d/functions
-
-MAILMANCTL=/usr/lib/mailman/bin/mailmanctl
-
-case "$1" in
- start)
- status 'Starting GNU Mailing List Manager' $MAILMANCTL -q start &&
- add_daemon ${0##*/} || exit 1
- ;;
- stop)
- status 'Stoping GNU Mailing List Manager' $MAILMANCTL -q stop &&
- rm_daemon ${0##*/} || exit 1
- ;;
- reload)
- status 'Reloading GNU Mailing List Manager' $MAILMANCTL -q restart
- ;;
- restart)
- $0 stop && $0 start
- ;;
- *)
- echo "usage: ${0##*/} {start|stop|restart|reload}" >&2
- ;;
-esac
-
-:
-# vim:set ts=2 sw=2 ft=sh et: