packages/mini_snmpd: use new service functions, various changes:
* changes 'disks' & 'interfaces' options to list * default 'enabled' to false * mark '/etc/config/mini_snmpd' as a config file git-svn-id: svn://svn.openwrt.org/openwrt/packages@29182 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
52da85f8aa
commit
f2342460e9
@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
|
|||||||
|
|
||||||
PKG_NAME:=mini_snmpd
|
PKG_NAME:=mini_snmpd
|
||||||
PKG_VERSION:=1.2b
|
PKG_VERSION:=1.2b
|
||||||
PKG_RELEASE:=4
|
PKG_RELEASE:=5
|
||||||
|
|
||||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||||||
PKG_SOURCE_URL:=http://members.aon.at/linuxfreak/linux/
|
PKG_SOURCE_URL:=http://members.aon.at/linuxfreak/linux/
|
||||||
@ -54,4 +54,8 @@ define Package/mini-snmpd/install
|
|||||||
$(INSTALL_BIN) ./files/mini_snmpd.init $(1)/etc/init.d/mini_snmpd
|
$(INSTALL_BIN) ./files/mini_snmpd.init $(1)/etc/init.d/mini_snmpd
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
define Package/mini-snmpd/conffiles
|
||||||
|
/etc/config/mini_snmpd
|
||||||
|
endef
|
||||||
|
|
||||||
$(eval $(call BuildPackage,mini-snmpd))
|
$(eval $(call BuildPackage,mini-snmpd))
|
||||||
|
@ -1,8 +1,16 @@
|
|||||||
config mini_snmpd
|
config mini_snmpd
|
||||||
option enabled 1
|
option enabled 0
|
||||||
option ipv6 0
|
option ipv6 0
|
||||||
option community public
|
option community 'public'
|
||||||
option location ''
|
|
||||||
option contact ''
|
option contact ''
|
||||||
option disks '/tmp,/jffs'
|
option location ''
|
||||||
option interfaces 'lo,br-lan,eth0.1,eth1' # Max 4
|
|
||||||
|
# enable basic disk usage statistics on specified mountpoint
|
||||||
|
list disks '/jffs'
|
||||||
|
list disks '/tmp'
|
||||||
|
|
||||||
|
# enable basic network statistics on specified interface
|
||||||
|
# 4 interfaces maximum, as named in /etc/config/network
|
||||||
|
list interfaces 'loopback'
|
||||||
|
list interfaces 'lan'
|
||||||
|
list interfaces 'wan'
|
||||||
|
@ -1,10 +1,23 @@
|
|||||||
#!/bin/sh /etc/rc.common
|
#!/bin/sh /etc/rc.common
|
||||||
# Copyright (C) 2009 OpenWrt.org
|
# Copyright (C) 2009-2011 OpenWrt.org
|
||||||
|
|
||||||
NAME=mini_snmpd
|
|
||||||
PROG=/usr/bin/$NAME
|
|
||||||
START=50
|
START=50
|
||||||
|
|
||||||
|
SERVICE_DAEMONIZE=1
|
||||||
|
SERVICE_WRITE_PID=1
|
||||||
|
|
||||||
|
append_disk() {
|
||||||
|
local disk="$1"
|
||||||
|
append disks "$disk" ','
|
||||||
|
}
|
||||||
|
|
||||||
|
append_interface() {
|
||||||
|
local name="$1"
|
||||||
|
local interface
|
||||||
|
config_get interface "$name" 'ifname'
|
||||||
|
append interfaces "$interface" ','
|
||||||
|
}
|
||||||
|
|
||||||
append_string() {
|
append_string() {
|
||||||
local section="$1"
|
local section="$1"
|
||||||
local option="$2"
|
local option="$2"
|
||||||
@ -14,28 +27,39 @@ append_string() {
|
|||||||
[ -n "$_val" ] && append args "$3 $_val"
|
[ -n "$_val" ] && append args "$3 $_val"
|
||||||
}
|
}
|
||||||
|
|
||||||
mini_snmpd_config() {
|
start_instance() {
|
||||||
local cfg="$1"
|
local cfg="$1"
|
||||||
args=""
|
local args=""
|
||||||
|
local disks=""
|
||||||
|
local interfaces=""
|
||||||
|
local ipv6
|
||||||
|
|
||||||
append_string "$cfg" community "-c"
|
append_string "$cfg" community "-c"
|
||||||
append_string "$cfg" location "-L"
|
append_string "$cfg" location "-L"
|
||||||
append_string "$cfg" contact "-C"
|
append_string "$cfg" contact "-C"
|
||||||
append_string "$cfg" disks "-d"
|
|
||||||
append_string "$cfg" interfaces "-i"
|
|
||||||
|
|
||||||
config_get_bool ipv6 "$cfg" "ipv6" '0'
|
config_get_bool ipv6 "$cfg" "ipv6" '0'
|
||||||
[ "$ipv6" -gt 0 ] && append args "-6"
|
[ "$ipv6" -gt 0 ] && append args "-6"
|
||||||
|
|
||||||
config_get_bool enabled "$cfg" "enabled" '1'
|
config_get_bool enabled "$cfg" "enabled" '1'
|
||||||
[ "$enabled" -gt 0 ] && $PROG $args &
|
[ "$enabled" -gt 0 ] || return 1
|
||||||
|
|
||||||
|
config_list_foreach "$section" 'disks' append_disk
|
||||||
|
args="${args}${disks:+ -d $disks}"
|
||||||
|
|
||||||
|
config_list_foreach "$section" 'interfaces' append_interface
|
||||||
|
args="${args}${interfaces:+ -i $interfaces}"
|
||||||
|
|
||||||
|
service_start /usr/bin/mini_snmpd $args
|
||||||
}
|
}
|
||||||
|
|
||||||
start() {
|
start() {
|
||||||
config_load mini_snmpd
|
include /lib/network
|
||||||
config_foreach mini_snmpd_config mini_snmpd
|
scan_interfaces
|
||||||
|
config_load 'mini_snmpd'
|
||||||
|
config_foreach start_instance 'mini_snmpd'
|
||||||
}
|
}
|
||||||
|
|
||||||
stop() {
|
stop() {
|
||||||
killall mini_snmpd
|
service_stop /usr/bin/mini_snmpd
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user