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
commit65b4654000ef64d06a72f87542753ad16dbeb610 (patch)
tree661185ed085c37d5a492c3577978e741aa43e924 /package/base-files/files/etc/functions.sh
parentc4571554522a1caddadbaa43c7e500cfa1501747 (diff)
downloadupstream-65b4654000ef64d06a72f87542753ad16dbeb610.tar.gz
upstream-65b4654000ef64d06a72f87542753ad16dbeb610.tar.bz2
upstream-65b4654000ef64d06a72f87542753ad16dbeb610.zip
add support for static routes - based on the patch from #1365
SVN-Revision: 6457
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
}