From ff64a82ccedcb1690d2f0140d63432aa49676591 Mon Sep 17 00:00:00 2001 From: Parabola Date: Thu, 7 Jul 2011 05:20:55 +0000 Subject: Thu Jul 7 05:20:55 UTC 2011 --- testing/postfix/rc.d | 36 ------------------------------------ 1 file changed, 36 deletions(-) delete mode 100755 testing/postfix/rc.d (limited to 'testing/postfix/rc.d') diff --git a/testing/postfix/rc.d b/testing/postfix/rc.d deleted file mode 100755 index fa314bb84..000000000 --- a/testing/postfix/rc.d +++ /dev/null @@ -1,36 +0,0 @@ -#!/bin/bash - -. /etc/rc.conf -. /etc/rc.d/functions - -name=postfix - -case "$1" in -start) - stat_busy "Starting $name daemon" - /usr/sbin/postfix start &>/dev/null \ - && { add_daemon $name; stat_done; } \ - || { stat_fail; exit 1; } - ;; -stop) - stat_busy "Stopping $name daemon" - /usr/sbin/postfix stop &>/dev/null \ - && { rm_daemon $name; stat_done; } \ - || { stat_fail; exit 1; } - ;; -reload) - stat_busy "Reloading $name daemon" - /usr/sbin/postfix reload &>/dev/null \ - && { stat_done; } \ - || { stat_fail; exit 1; } - ;; -restart) - $0 stop - sleep 1 - $0 start - ;; -*) - echo "usage: $0 {start|stop|restart|reload}" - ;; -esac -exit 0 -- cgit v1.2.3-54-g00ecf