diff options
author | bofh <bofh@FreeBSD.org> | 2016-08-09 05:17:25 +0800 |
---|---|---|
committer | bofh <bofh@FreeBSD.org> | 2016-08-09 05:17:25 +0800 |
commit | 2771077999974dafa7ea34c95074634aa5c2c219 (patch) | |
tree | a9a67a0f85ab5b27fe6ba1e986dac91337a11e8a /net-mgmt | |
parent | 397b68a247f97d0ceb9e61798d97ef286a3fe78e (diff) | |
download | freebsd-ports-gnome-2771077999974dafa7ea34c95074634aa5c2c219.tar.gz freebsd-ports-gnome-2771077999974dafa7ea34c95074634aa5c2c219.tar.zst freebsd-ports-gnome-2771077999974dafa7ea34c95074634aa5c2c219.zip |
net-mgmt/argus3: Fix rc.d script
PR: 203597
Submitted by: peter.thoenen@yahoo.com
Diffstat (limited to 'net-mgmt')
-rw-r--r-- | net-mgmt/argus3/Makefile | 1 | ||||
-rw-r--r-- | net-mgmt/argus3/files/argus.in | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/net-mgmt/argus3/Makefile b/net-mgmt/argus3/Makefile index 904a7f445dcf..7eba0fd49e0e 100644 --- a/net-mgmt/argus3/Makefile +++ b/net-mgmt/argus3/Makefile @@ -3,6 +3,7 @@ PORTNAME= argus PORTVERSION= 3.0.8.2 +PORTREVISION= 1 CATEGORIES= net-mgmt security MASTER_SITES= http://qosient.com/argus/src/ \ ftp://qosient.com/pub/argus/src/ diff --git a/net-mgmt/argus3/files/argus.in b/net-mgmt/argus3/files/argus.in index 342a53ee4a3f..5a82a07a20ef 100644 --- a/net-mgmt/argus3/files/argus.in +++ b/net-mgmt/argus3/files/argus.in @@ -28,7 +28,7 @@ argus_start() return 1 fi echo "Starting ${name}." - /usr/sbin/daemon -p $pidfile ${command} -d ${argus_flags} + /usr/sbin/daemon -p $pidfile ${command} ${argus_flags} _run_rc_postcmd } |