[packages] mini_snmpd: use network.sh to find devices

git-svn-id: svn://svn.openwrt.org/openwrt/packages@31948 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
jow 2012-05-28 15:35:45 +00:00
parent 10b17a11a0
commit fe362a4df0
2 changed files with 8 additions and 8 deletions

View File

@ -1,5 +1,5 @@
#
# Copyright (C) 2009-2011 OpenWrt.org
# Copyright (C) 2009-2012 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=mini_snmpd
PKG_VERSION:=1.2b
PKG_RELEASE:=6
PKG_RELEASE:=7
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=http://members.aon.at/linuxfreak/linux/

View File

@ -1,5 +1,5 @@
#!/bin/sh /etc/rc.common
# Copyright (C) 2009-2011 OpenWrt.org
# Copyright (C) 2009-2012 OpenWrt.org
START=50
@ -13,9 +13,9 @@ append_disk() {
append_interface() {
local name="$1"
local interface
config_get interface "$name" 'ifname' "$name"
append interfaces "$interface" ','
local device
network_get_device device "$name"
append interfaces "${device:-$name}" ','
}
append_string() {
@ -54,8 +54,8 @@ start_instance() {
}
start() {
include /lib/network
scan_interfaces
. /lib/functions/network.sh
config_load 'mini_snmpd'
config_foreach start_instance 'mini_snmpd'
}