X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=applications%2Fluci-ffwizard-leipzig%2Fluasrc%2Fmodel%2Fcbi%2Fffwizard.lua;h=fa88f015070d90f385611e8f7a157ff1055634fe;hb=604cd8de6658e17cdb2830bc49697940875117ee;hp=df5afdfa149d04d29db59513cc48933a9b646e33;hpb=95814fcd1af5061071a96305f28f43f537911290;p=oweals%2Fluci.git diff --git a/applications/luci-ffwizard-leipzig/luasrc/model/cbi/ffwizard.lua b/applications/luci-ffwizard-leipzig/luasrc/model/cbi/ffwizard.lua index df5afdfa1..fa88f0150 100644 --- a/applications/luci-ffwizard-leipzig/luasrc/model/cbi/ffwizard.lua +++ b/applications/luci-ffwizard-leipzig/luasrc/model/cbi/ffwizard.lua @@ -235,19 +235,22 @@ function main.write(self, section, value) tools.firewall_zone_add_interface("freifunk", device) - -- Set hostname local new_hostname = ip:gsub("%.", "-") local old_hostname = sys.hostname() - if old_hostname == "OpenWrt" or old_hostname:match("^%d+-%d+-%d+-%d+$") then - uci:foreach("system", "system", - function(s) + uci:foreach("system", "system", + function(s) + -- Make crond silent + uci:set("system", s['.name'], "cronloglevel", "10") + + -- Set hostname + if old_hostname == "OpenWrt" or old_hostname:match("^%d+-%d+-%d+-%d+$") then uci:set("system", s['.name'], "hostname", new_hostname) - end) + sys.hostname(new_hostname) + end + end) - sys.hostname(new_hostname) - uci:save("system") - end + uci:save("system") end