From: Jo-Philipp Wich Date: Thu, 25 Mar 2010 13:42:54 +0000 (+0000) Subject: modules/admin-full: apply timezone immediately (#103) X-Git-Tag: 0.10.0~775 X-Git-Url: https://git.archive.openwrt.org/?p=project%2Fluci.git;a=commitdiff_plain;h=103e532246f60ae9f3368fc3be454695ad21cd6e modules/admin-full: apply timezone immediately (#103) --- diff --git a/modules/admin-full/luasrc/model/cbi/admin_system/system.lua b/modules/admin-full/luasrc/model/cbi/admin_system/system.lua index 1d6163a08..a2bbf29b6 100644 --- a/modules/admin-full/luasrc/model/cbi/admin_system/system.lua +++ b/modules/admin-full/luasrc/model/cbi/admin_system/system.lua @@ -15,6 +15,7 @@ $Id$ require("luci.sys") require("luci.sys.zoneinfo") require("luci.tools.webadmin") +require("luci.fs") m = Map("system", translate("System"), translate("Here you can configure the basic aspects of your device like its hostname or the timezone.")) @@ -72,7 +73,9 @@ function tz.write(self, section, value) end AbstractValue.write(self, section, value) - self.map.uci:set("system", section, "timezone", lookup_zone(value) or "GMT0") + local timezone = lookup_zone(value) or "GMT0" + self.map.uci:set("system", section, "timezone", timezone) + luci.fs.writefile("/etc/TZ", timezone .. "\n") end s:option(Value, "log_size", nil, "kiB").optional = true