summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Holzer <mholzer@gentoo.org>2003-12-17 19:24:37 +0000
committerMartin Holzer <mholzer@gentoo.org>2003-12-17 19:24:37 +0000
commita8deae9667f7a9c8eb273ec6bc8f06bb25674259 (patch)
tree6c0a7a994e8811b6279b934d113cfa8eeae0f9b1 /net-analyzer/net-snmp/files
parentMarked stable on hppa. (diff)
downloadgentoo-2-a8deae9667f7a9c8eb273ec6bc8f06bb25674259.tar.gz
gentoo-2-a8deae9667f7a9c8eb273ec6bc8f06bb25674259.tar.bz2
gentoo-2-a8deae9667f7a9c8eb273ec6bc8f06bb25674259.zip
Version bumped.
Diffstat (limited to 'net-analyzer/net-snmp/files')
-rw-r--r--net-analyzer/net-snmp/files/digest-net-snmp-5.11
-rw-r--r--net-analyzer/net-snmp/files/snmpdnew.rc627
2 files changed, 28 insertions, 0 deletions
diff --git a/net-analyzer/net-snmp/files/digest-net-snmp-5.1 b/net-analyzer/net-snmp/files/digest-net-snmp-5.1
new file mode 100644
index 000000000000..5e683a91cf82
--- /dev/null
+++ b/net-analyzer/net-snmp/files/digest-net-snmp-5.1
@@ -0,0 +1 @@
+MD5 14217471edb2b805b0e28c4c3cfd8c75 net-snmp-5.1.tar.gz 2909299
diff --git a/net-analyzer/net-snmp/files/snmpdnew.rc6 b/net-analyzer/net-snmp/files/snmpdnew.rc6
new file mode 100644
index 000000000000..ab69067b51f8
--- /dev/null
+++ b/net-analyzer/net-snmp/files/snmpdnew.rc6
@@ -0,0 +1,27 @@
+#!/sbin/runscript
+
+depend() {
+ use logger
+ need net
+}
+
+checkconfig() {
+ if [ ! -e /etc/snmp/snmpd.conf ] ; then
+ eerror "You need an /etc/snmp/snmpd.conf config file to run snmpd"
+ return 1
+ fi
+}
+
+start() {
+ checkconfig || return 1
+ ebegin "Starting net-snmpd"
+ start-stop-daemon --start --quiet --exec /usr/sbin/snmpd \
+ -- -p /var/run/snmpd.pid ${SNMPD_FLAGS}
+ eend $?
+}
+
+stop() {
+ ebegin "Stopping net-snmpd"
+ start-stop-daemon --stop --quiet --pidfile /var/run/snmpd.pid
+ eend $?
+}