summaryrefslogtreecommitdiff
path: root/mail/postfix-current/patches/patch-ab
diff options
context:
space:
mode:
Diffstat (limited to 'mail/postfix-current/patches/patch-ab')
-rw-r--r--mail/postfix-current/patches/patch-ab26
1 files changed, 26 insertions, 0 deletions
diff --git a/mail/postfix-current/patches/patch-ab b/mail/postfix-current/patches/patch-ab
new file mode 100644
index 00000000000..3c463049a9b
--- /dev/null
+++ b/mail/postfix-current/patches/patch-ab
@@ -0,0 +1,26 @@
+$NetBSD: patch-ab,v 1.10 2006/10/18 05:52:26 martti Exp $
+
+--- auxiliary/MacOSX/Postfix.StartupItem/Postfix.orig 2006-10-18 08:42:33.000000000 +0000
++++ auxiliary/MacOSX/Postfix.StartupItem/Postfix 2006-10-18 08:43:13.000000000 +0000
+@@ -20,18 +20,18 @@
+ # Start mail server
+ ##
+
+-if [ "$1" == "start" ]
++if [ "$1" = "start" ]
+ then
+ if [ "${POSTFIX:=-NO-}" = "-YES-" ]
+ then
+ ConsoleMessage "Starting Postfix mail services"
+ /usr/sbin/postfix start
+ fi
+-elif [ "$1" == "stop" ]
++elif [ "$1" = "stop" ]
+ then
+ ConsoleMessage "Stopping Postfix mail services"
+ /usr/sbin/postfix stop
+-elif [ "$1" == "restart" ]
++elif [ "$1" = "restart" ]
+ then
+ if [ "${POSTFIX:=-NO-}" = "-YES-" ]
+ then