diff options
author | kuriyama <kuriyama@FreeBSD.org> | 2004-07-27 08:08:07 +0800 |
---|---|---|
committer | kuriyama <kuriyama@FreeBSD.org> | 2004-07-27 08:08:07 +0800 |
commit | 399a25a249350310a1b934e9f10c29e82b08d37d (patch) | |
tree | 52599e6a017dfb5c0e9eaa646c6b40db00a23deb /net-mgmt/net-snmp53 | |
parent | ac294ae73dadf9f88520e010d15185491e7d175f (diff) | |
download | freebsd-ports-gnome-399a25a249350310a1b934e9f10c29e82b08d37d.tar.gz freebsd-ports-gnome-399a25a249350310a1b934e9f10c29e82b08d37d.tar.zst freebsd-ports-gnome-399a25a249350310a1b934e9f10c29e82b08d37d.zip |
Update to follow new rc.d/localpkg order.
Obtained from: mtm
Diffstat (limited to 'net-mgmt/net-snmp53')
-rw-r--r-- | net-mgmt/net-snmp53/Makefile | 2 | ||||
-rw-r--r-- | net-mgmt/net-snmp53/files/snmpd.sh.sample | 4 | ||||
-rw-r--r-- | net-mgmt/net-snmp53/files/snmptrapd.sh.sample | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/net-mgmt/net-snmp53/Makefile b/net-mgmt/net-snmp53/Makefile index 81442f354f43..f465998d3fc8 100644 --- a/net-mgmt/net-snmp53/Makefile +++ b/net-mgmt/net-snmp53/Makefile @@ -7,7 +7,7 @@ PORTNAME= snmp PORTVERSION= 5.1.1 -PORTREVISION= 5 +PORTREVISION= 6 PKGNAMEPREFIX= net- CATEGORIES= net-mgmt ipv6 MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} diff --git a/net-mgmt/net-snmp53/files/snmpd.sh.sample b/net-mgmt/net-snmp53/files/snmpd.sh.sample index 814c0b7ac701..6e089e397b40 100644 --- a/net-mgmt/net-snmp53/files/snmpd.sh.sample +++ b/net-mgmt/net-snmp53/files/snmpd.sh.sample @@ -11,8 +11,8 @@ # snmpd_enable="YES" # -snmpd_enable="NO" -snmpd_flags="-p /var/run/snmpd.pid" +snmpd_enable=${snmpd_enable-"NO"} +snmpd_flags=${snmpd_flags-"-p /var/run/snmpd.pid"} . %%RC_SUBR%% diff --git a/net-mgmt/net-snmp53/files/snmptrapd.sh.sample b/net-mgmt/net-snmp53/files/snmptrapd.sh.sample index 760c260ccfe4..b3b48c2d79c2 100644 --- a/net-mgmt/net-snmp53/files/snmptrapd.sh.sample +++ b/net-mgmt/net-snmp53/files/snmptrapd.sh.sample @@ -11,8 +11,8 @@ # snmptrapd_enable="YES" # -snmptrapd_enable="NO" -snmptrapd_flags="-p /var/run/snmptrapd.pid" +snmptrapd_enable=${snmptrapd_enable-"NO"} +snmptrapd_flags=${snmptrapd_flags-"-p /var/run/snmptrapd.pid"} . %%RC_SUBR%% |