aboutsummaryrefslogtreecommitdiffstats
path: root/package/base-files/files/etc/functions.sh
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2007-03-02 15:48:29 +0000
committerFelix Fietkau <nbd@openwrt.org>2007-03-02 15:48:29 +0000
commit6b6e8899e60381401a2d01890b8c03c61fc89f31 (patch)
treec1c1db4c749b2abf661beb21cbd8a77a899d7d7e /package/base-files/files/etc/functions.sh
parentcc4e5bb27b057df1eb122408917677c301c41a10 (diff)
downloadmaster-187ad058-6b6e8899e60381401a2d01890b8c03c61fc89f31.tar.gz
master-187ad058-6b6e8899e60381401a2d01890b8c03c61fc89f31.tar.bz2
master-187ad058-6b6e8899e60381401a2d01890b8c03c61fc89f31.zip
add support for static routes - based on the patch from #1365
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6457 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/base-files/files/etc/functions.sh')
-rwxr-xr-xpackage/base-files/files/etc/functions.sh5
1 files changed, 4 insertions, 1 deletions
diff --git a/package/base-files/files/etc/functions.sh b/package/base-files/files/etc/functions.sh
index 931f4be472..1cb365d478 100755
--- a/package/base-files/files/etc/functions.sh
+++ b/package/base-files/files/etc/functions.sh
@@ -125,10 +125,13 @@ config_set() {
config_foreach() {
local function="$1"
- local section
+ local type="$2"
+ local section cfgtype
[ -z "$CONFIG_SECTIONS" ] && return 0
for section in ${CONFIG_SECTIONS}; do
+ config_get cfgtype "$section" TYPE
+ [ -n "$type" -a "$cfgtype" != "$type" ] && continue
eval "$function \"\$section\""
done
}