summaryrefslogtreecommitdiff
path: root/openwrt/package/net-snmp/files
diff options
context:
space:
mode:
Diffstat (limited to 'openwrt/package/net-snmp/files')
-rw-r--r--openwrt/package/net-snmp/files/snmpd.conf14
-rw-r--r--openwrt/package/net-snmp/files/snmpd.default1
-rw-r--r--openwrt/package/net-snmp/files/snmpd.init25
3 files changed, 0 insertions, 40 deletions
diff --git a/openwrt/package/net-snmp/files/snmpd.conf b/openwrt/package/net-snmp/files/snmpd.conf
deleted file mode 100644
index f6e872a..0000000
--- a/openwrt/package/net-snmp/files/snmpd.conf
+++ /dev/null
@@ -1,14 +0,0 @@
-com2sec ro default public
-com2sec rw localhost private
-
-group public v1 ro
-group public v2c ro
-group public usm ro
-group private v1 rw
-group private v2c rw
-group private usm rw
-
-view all included .1
-
-access public "" any noauth exact all none none
-access private "" any noauth exact all all all
diff --git a/openwrt/package/net-snmp/files/snmpd.default b/openwrt/package/net-snmp/files/snmpd.default
deleted file mode 100644
index 758c8e4..0000000
--- a/openwrt/package/net-snmp/files/snmpd.default
+++ /dev/null
@@ -1 +0,0 @@
-OPTIONS="-Lf /dev/null -p /var/run/snmpd.pid"
diff --git a/openwrt/package/net-snmp/files/snmpd.init b/openwrt/package/net-snmp/files/snmpd.init
deleted file mode 100644
index 46b4297..0000000
--- a/openwrt/package/net-snmp/files/snmpd.init
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/bin/sh
-
-DEFAULT=/etc/default/snmpd
-LIB_D=/var/lib/snmp
-LOG_D=/var/log
-RUN_D=/var/run
-PID_F=$RUN_D/snmpd.pid
-
-[ -f $DEFAULT ] && . $DEFAULT
-
-case $1 in
- start)
- [ -d $LIB_D ] || mkdir -p $LIB_D
- [ -d $LOG_D ] || mkdir -p $LOG_D
- [ -d $RUN_D ] || mkdir -p $RUN_D
- snmpd $OPTIONS
- ;;
- stop)
- [ -f $PID_F ] && kill $(cat $PID_F)
- ;;
- *)
- echo "usage: $0 (start|stop)"
- exit 1
-esac
-exit $?