diff options
author | Felix Fietkau <nbd@openwrt.org> | 2007-03-02 15:48:29 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2007-03-02 15:48:29 +0000 |
commit | 65b4654000ef64d06a72f87542753ad16dbeb610 (patch) | |
tree | 661185ed085c37d5a492c3577978e741aa43e924 /package/base-files/files/etc/functions.sh | |
parent | c4571554522a1caddadbaa43c7e500cfa1501747 (diff) | |
download | upstream-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-x | package/base-files/files/etc/functions.sh | 5 |
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 } |