summaryrefslogtreecommitdiffhomepage
path: root/applications
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2009-02-01 17:14:00 +0000
committerJo-Philipp Wich <jow@openwrt.org>2009-02-01 17:14:00 +0000
commit08bcf69aac9c7429ad77f847a413d96b29265c52 (patch)
tree29ea6cc58c70795920e5bc6a217c7bfab13e454d /applications
parent4b9f7db1cea69524ca46098b446b0fe51e87091b (diff)
applications/luci-ffwizard-leipzig: use luci.sys.hostname() to update hostname
Diffstat (limited to 'applications')
-rw-r--r--applications/luci-ffwizard-leipzig/luasrc/model/cbi/ffwizard.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/applications/luci-ffwizard-leipzig/luasrc/model/cbi/ffwizard.lua b/applications/luci-ffwizard-leipzig/luasrc/model/cbi/ffwizard.lua
index b81e77d9d..526913c07 100644
--- a/applications/luci-ffwizard-leipzig/luasrc/model/cbi/ffwizard.lua
+++ b/applications/luci-ffwizard-leipzig/luasrc/model/cbi/ffwizard.lua
@@ -245,7 +245,7 @@ function main.write(self, section, value)
uci:set("system", s['.name'], "hostname", new_hostname)
end)
- luci.fs.writefile( "/proc/sys/kernel/hostname", new_hostname.."\n" )
+ sys.hostname(new_hostname)
uci:save("system")
end
end