[packages] skels: use network.sh to find device names

git-svn-id: svn://svn.openwrt.org/openwrt/packages@31973 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
jow 2012-05-29 01:47:52 +00:00
parent bb93516488
commit c623289c18

View File

@ -1,17 +1,16 @@
#!/bin/sh /etc/rc.common
# Sample init script reading its
# configuration from /etc/config/package
START=46
STOP=46
start_service() {
local section="$1"
include /lib/network
scan_interfaces
config_load /var/state/network
. /lib/functions/network.sh
config_get LAN lan ifname
network_get_device LAN lan ifname
config_get option1 "$section" option1
config_get option2 "$section" option2
@ -22,11 +21,9 @@ start_service() {
stop_service() {
local section="$1"
include /lib/network
scan_interfaces
config_load /var/state/network
. /lib/functions/network.sh
config_get LAN lan ifname
network_get_device LAN lan ifname
config_get option1 "$section" option1
config_get option2 "$section" option2
}