modules/admin-full: fix system/admin from form() to cbi() type to add missing apply...
[project/luci.git] / applications / luci-initmgr / luasrc / model / cbi / init / startup.lua
1 --[[
2 LuCI - Lua Configuration Interface
3
4 Copyright 2008 Steven Barth <steven@midlink.org>
5 Copyright 2008 Jo-Philipp Wich <xm@leipzig.freifunk.net>
6 Copyright 2010 Manuel Munz <freifunk at somakoma dot de>
7
8 Licensed under the Apache License, Version 2.0 (the "License");
9 you may not use this file except in compliance with the License.
10 You may obtain a copy of the License at
11
12         http://www.apache.org/licenses/LICENSE-2.0
13 ]]--
14
15 local fs = require "nixio.fs"
16 local rc = "/etc/rc.local" 
17
18 f = SimpleForm("rc", translate("Local Startup"), translate("This is the content of /etc/rc.local. Insert your own commands here (in front of 'exit 0') to execute them at the end of the boot process."))
19
20 t = f:field(TextValue, "rcs")
21 t.rmempty = true
22 t.rows = 20
23 function t.cfgvalue()
24         return fs.readfile(rc) or ""
25 end
26
27 function f.handle(self, state, data)
28         if state == FORM_VALID then
29                 if data.rcs then
30                         fs.writefile(rc, data.rcs:gsub("\r\n", "\n"))
31                 end
32         end
33         return true
34 end
35
36 return f