diff options
author | Felix Fietkau <nbd@openwrt.org> | 2008-01-02 17:10:16 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2008-01-02 17:10:16 +0000 |
commit | 3b2e07b84fc38f8fed75f3c38d6375f8b08bc8f4 (patch) | |
tree | c369c17d562ef44c040d2c26420db3d066c8355c /package/base-files | |
parent | 162f0194a155e46064ad282f60fe47865a4a0130 (diff) | |
download | upstream-3b2e07b84fc38f8fed75f3c38d6375f8b08bc8f4.tar.gz upstream-3b2e07b84fc38f8fed75f3c38d6375f8b08bc8f4.tar.bz2 upstream-3b2e07b84fc38f8fed75f3c38d6375f8b08bc8f4.zip |
add uci_set_default (to be used in init scripts or /etc/uci-defaults)
SVN-Revision: 10086
Diffstat (limited to 'package/base-files')
-rwxr-xr-x | package/base-files/files/etc/functions.sh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/package/base-files/files/etc/functions.sh b/package/base-files/files/etc/functions.sh index 69af187502..ef2801512f 100755 --- a/package/base-files/files/etc/functions.sh +++ b/package/base-files/files/etc/functions.sh @@ -217,3 +217,9 @@ jffs2_mark_erase() { } echo -e "\xde\xad\xc0\xde" | mtd -qq write - "$1" } + +uci_set_default() { + local PACKAGE="$1" + [ -e "/etc/config/$1" ] && return 0 + cat > "/etc/config/$1" +} |