aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordougb <dougb@FreeBSD.org>2012-08-06 08:28:43 +0800
committerdougb <dougb@FreeBSD.org>2012-08-06 08:28:43 +0800
commit3fd63179eab3aabf71acde27ce919609051b200d (patch)
tree064a3b25bd22f00aecb92267a8a37b3b2bcc0446
parentf0d9f58b7f1825fb95236f427a6400ad54ad4b5e (diff)
downloadfreebsd-ports-gnome-3fd63179eab3aabf71acde27ce919609051b200d.tar.gz
freebsd-ports-gnome-3fd63179eab3aabf71acde27ce919609051b200d.tar.zst
freebsd-ports-gnome-3fd63179eab3aabf71acde27ce919609051b200d.zip
Fix what looks like a copy-paste-o that originated in the same script:
command=foo >/dev/null 2>&1 | v command=foo command_args='>/dev/null 2>&1' This is clearly what should have been done, for several reasons. No PORTREVISION bump because the old version simply ignored everything after the space, and does not seem to have done any harm. However it's good to clean these up so that similar errors aren't pasted into a new script where they might actually matter.
-rw-r--r--dns/bindgraph/files/bindgraph.in3
-rw-r--r--mail/couriergraph/files/couriergraph.in3
-rw-r--r--mail/mailgraph/files/mailgraph.in3
-rw-r--r--mail/ovs/files/ovs.in3
-rw-r--r--security/amavisd-new/files/amavisd.in3
-rw-r--r--security/xinetd/files/xinetd.in3
6 files changed, 12 insertions, 6 deletions
diff --git a/dns/bindgraph/files/bindgraph.in b/dns/bindgraph/files/bindgraph.in
index 62b0fd34d204..42f4f4315bf2 100644
--- a/dns/bindgraph/files/bindgraph.in
+++ b/dns/bindgraph/files/bindgraph.in
@@ -15,7 +15,8 @@
name="bindgraph"
rcvar=bindgraph_enable
-command=%%PREFIX%%/sbin/${name}.pl > /dev/null 2>&1
+command=%%PREFIX%%/sbin/${name}.pl
+command_args='> /dev/null 2>&1'
command_interpreter=/usr/bin/perl
stop_postcmd=stop_postcmd
diff --git a/mail/couriergraph/files/couriergraph.in b/mail/couriergraph/files/couriergraph.in
index c39859255592..74066d09f56b 100644
--- a/mail/couriergraph/files/couriergraph.in
+++ b/mail/couriergraph/files/couriergraph.in
@@ -16,7 +16,8 @@
name=couriergraph
rcvar=couriergraph_enable
-command=%%PREFIX%%/sbin/couriergraph.pl > /dev/null 2>&1
+command=%%PREFIX%%/sbin/couriergraph.pl
+command_args='> /dev/null 2>&1'
command_interpreter=/usr/bin/perl
stop_postcmd=stop_postcmd
diff --git a/mail/mailgraph/files/mailgraph.in b/mail/mailgraph/files/mailgraph.in
index a619e77be4c4..64940970bd7b 100644
--- a/mail/mailgraph/files/mailgraph.in
+++ b/mail/mailgraph/files/mailgraph.in
@@ -15,7 +15,8 @@
name="mailgraph"
rcvar=mailgraph_enable
-command=%%PREFIX%%/sbin/${name}.pl > /dev/null 2>&1
+command=%%PREFIX%%/sbin/${name}.pl
+command_args='> /dev/null 2>&1'
command_interpreter=/usr/bin/perl
stop_postcmd=stop_postcmd
diff --git a/mail/ovs/files/ovs.in b/mail/ovs/files/ovs.in
index 1c8e16be08ad..8dabbc632342 100644
--- a/mail/ovs/files/ovs.in
+++ b/mail/ovs/files/ovs.in
@@ -15,7 +15,8 @@
name="ovs"
rcvar=ovs_enable
-command=%%PREFIX%%/sbin/${name}.pl > /dev/null 2>&1
+command=%%PREFIX%%/sbin/${name}.pl
+command_args='> /dev/null 2>&1'
command_interpreter=/usr/bin/perl
stop_postcmd=stop_postcmd
diff --git a/security/amavisd-new/files/amavisd.in b/security/amavisd-new/files/amavisd.in
index 593d26982d81..1b8e77ffee75 100644
--- a/security/amavisd-new/files/amavisd.in
+++ b/security/amavisd-new/files/amavisd.in
@@ -19,7 +19,8 @@
name=amavisd
rcvar=amavisd_enable
-command=%%PREFIX%%/sbin/amavisd > /dev/null 2>&1
+command=%%PREFIX%%/sbin/amavisd
+command_args='> /dev/null 2>&1'
required_files=%%PREFIX%%/etc/amavisd.conf
extra_commands="reload"
diff --git a/security/xinetd/files/xinetd.in b/security/xinetd/files/xinetd.in
index 9e66788e2428..d7655b26fb18 100644
--- a/security/xinetd/files/xinetd.in
+++ b/security/xinetd/files/xinetd.in
@@ -15,7 +15,8 @@
name=xinetd
rcvar=xinetd_enable
-command=%%PREFIX%%/sbin/xinetd > /dev/null 2>&1
+command=%%PREFIX%%/sbin/xinetd
+command_args='> /dev/null 2>&1'
pidfile=/var/run/xinetd.pid
xinetd_enable=${xinetd_enable:-"NO"}