summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Schwarzott <zzam@gentoo.org>2007-07-12 08:45:12 +0000
committerMatthias Schwarzott <zzam@gentoo.org>2007-07-12 08:45:12 +0000
commitd9853855b48a4cd5f7c9e5a0e378c6cf614d7e18 (patch)
tree19ea43ebf6cdd35d6f3e2cd948e7458405231b4e /mail-mta/postfix/files
parentKeyworded ~sparc-fbsd (diff)
downloadhistorical-d9853855b48a4cd5f7c9e5a0e378c6cf614d7e18.tar.gz
historical-d9853855b48a4cd5f7c9e5a0e378c6cf614d7e18.tar.bz2
historical-d9853855b48a4cd5f7c9e5a0e378c6cf614d7e18.zip
Removed bashisms from init-script, Bug #181874.
Package-Manager: portage-2.1.3_rc7
Diffstat (limited to 'mail-mta/postfix/files')
-rw-r--r--mail-mta/postfix/files/postfix.rc6.2.2.98
1 files changed, 4 insertions, 4 deletions
diff --git a/mail-mta/postfix/files/postfix.rc6.2.2.9 b/mail-mta/postfix/files/postfix.rc6.2.2.9
index 2e222ff47f7e..85e6ef0c2924 100644
--- a/mail-mta/postfix/files/postfix.rc6.2.2.9
+++ b/mail-mta/postfix/files/postfix.rc6.2.2.9
@@ -1,7 +1,7 @@
#!/sbin/runscript
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/mail-mta/postfix/files/postfix.rc6.2.2.9,v 1.1 2006/03/07 21:07:20 ferdy Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-mta/postfix/files/postfix.rc6.2.2.9,v 1.2 2007/07/12 08:45:12 zzam Exp $
opts="${opts} reload"
@@ -12,18 +12,18 @@ depend() {
start() {
ebegin "Starting postfix"
- /usr/sbin/postfix start &>/dev/null
+ /usr/sbin/postfix start >/dev/null 2>&1
eend $?
}
stop() {
ebegin "Stopping postfix"
- /usr/sbin/postfix stop &>/dev/null
+ /usr/sbin/postfix stop >/dev/null 2>&1
eend $?
}
reload() {
ebegin "Reloading postfix"
- /usr/sbin/postfix reload &>/dev/null
+ /usr/sbin/postfix reload >/dev/null 2>&1
eend $?
}