summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'net-analyzer')
-rw-r--r--net-analyzer/net-snmp/ChangeLog5
-rw-r--r--net-analyzer/net-snmp/Manifest4
-rw-r--r--net-analyzer/net-snmp/files/snmpd.rc64
3 files changed, 8 insertions, 5 deletions
diff --git a/net-analyzer/net-snmp/ChangeLog b/net-analyzer/net-snmp/ChangeLog
index 381f628bd40b..5cee3fd982d3 100644
--- a/net-analyzer/net-snmp/ChangeLog
+++ b/net-analyzer/net-snmp/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for net-analyzer/net-snmp
# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/net-snmp/ChangeLog,v 1.29 2003/10/21 04:58:53 max Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/net-snmp/ChangeLog,v 1.30 2003/10/30 23:53:46 max Exp $
+
+ 30 Oct 2003; Max Kalika <max@gentoo.org> files/snmpd.rc6:
+ Use pidfile.
20 Oct 2003; Max Kalika <max@gentoo.org> net-snmp-5.0.9-r2.ebuild:
Add DEPEND on ExtUtils-MakeMaker-6.11-r1 to fix sandbox problems.
diff --git a/net-analyzer/net-snmp/Manifest b/net-analyzer/net-snmp/Manifest
index fd021ebbfefa..04b1af02a5da 100644
--- a/net-analyzer/net-snmp/Manifest
+++ b/net-analyzer/net-snmp/Manifest
@@ -1,8 +1,8 @@
MD5 67d998ad23b884a396dc092cdc04ab45 net-snmp-5.0.9-r1.ebuild 1630
MD5 031f6ccf28a5fc792760a3a695fae272 net-snmp-5.0.9-r2.ebuild 2113
-MD5 9fef2db6b1d25bc592e09685707b6d3b ChangeLog 5045
+MD5 56a133cfdf67ca76f981d76fa2f84476 ChangeLog 5121
MD5 9384ae7ba3e9f56b8027ea92f607042d metadata.xml 215
MD5 8cadda02e3a8f7279f531b660164c310 files/digest-net-snmp-5.0.9-r1 67
MD5 8cadda02e3a8f7279f531b660164c310 files/digest-net-snmp-5.0.9-r2 67
MD5 183ae5320f0a2d1d22f8403e0df1cce1 files/snmpd.conf 313
-MD5 b27fac50a820be08480c04732666deb8 files/snmpd.rc6 485
+MD5 b0d79a2bc180b70b3d824706fc086abe files/snmpd.rc6 513
diff --git a/net-analyzer/net-snmp/files/snmpd.rc6 b/net-analyzer/net-snmp/files/snmpd.rc6
index ce691ec527b9..5fc6cf522a81 100644
--- a/net-analyzer/net-snmp/files/snmpd.rc6
+++ b/net-analyzer/net-snmp/files/snmpd.rc6
@@ -16,12 +16,12 @@ start() {
checkconfig || return 1
ebegin "Starting net-snmpd"
start-stop-daemon --start --quiet --exec /usr/sbin/snmpd \
- -- -c /etc/snmp/snmpd.conf ${SNMPD_FLAGS}
+ -- -P /var/run/snmpd.pid -c /etc/snmp/snmpd.conf ${SNMPD_FLAGS}
eend $?
}
stop() {
ebegin "Stopping net-snmpd"
- start-stop-daemon --stop --quiet --exec /usr/sbin/snmpd
+ start-stop-daemon --stop --quiet --pidfile /var/run/snmpd.pid
eend $?
}