package/olsrd-luci: add exception for Ip6AddrType option
authorJo-Philipp Wich <jow@openwrt.org>
Sat, 29 Nov 2008 01:36:38 +0000 (01:36 +0000)
committerJo-Philipp Wich <jow@openwrt.org>
Sat, 29 Nov 2008 01:36:38 +0000 (01:36 +0000)
applications/luci-olsr: add support for Ip6AddrType option

applications/luci-olsr/luasrc/model/cbi/olsr/olsrd.lua
contrib/package/olsrd-luci/files/etc/init.d/olsrd

index 0f8bc42..4da1c40 100644 (file)
@@ -114,6 +114,13 @@ i:option(Value, "MidValidityTime").optional = true
 i:option(Value, "HnaInterval").optional = true
 i:option(Value, "HnaValidityTime").optional = true
 
+ip6t = i:option(ListValue, "Ip6AddrType")
+ip6t:value("auto")
+ip6t:value("site-local")
+ip6t:value("unique-local")
+ip6t:value("global")
+ip6t.optional = true
+
 adc = i:option(Flag, "AutoDetectChanges")
 adc.enabled  = "yes"
 adc.disabled = "no"
index 9aee7a3..aa2950a 100755 (executable)
@@ -124,7 +124,7 @@ olsrd_write_option() {
        fi
 
        if [ "$value" != "${value%%[G-Zg-z_-]*}" ]; then
-               if [ "$value" != "yes" -a "$value" != "no" ]; then
+               if [ "$option" != "Ip6AddrType" -a "$value" != "yes" -a "$value" != "no" ]; then
                        value="\"$value\""
                fi
        fi