diff options
author | Steven Barth <steven@midlink.org> | 2008-08-17 13:49:19 +0000 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2008-08-17 13:49:19 +0000 |
commit | 3904a012fad31017553063d15dbc399da03dea45 (patch) | |
tree | 217e7bc7274cea82a0d0f571ebfefdebe7cffe0c /modules/admin-full/luasrc/model | |
parent | 6d430930a3326d5ea1f92c46de5565dd05cd2030 (diff) |
modules/admin-full: Added crontab configuration page
Diffstat (limited to 'modules/admin-full/luasrc/model')
-rw-r--r-- | modules/admin-full/luasrc/model/cbi/admin_services/crontab.lua | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/modules/admin-full/luasrc/model/cbi/admin_services/crontab.lua b/modules/admin-full/luasrc/model/cbi/admin_services/crontab.lua new file mode 100644 index 000000000..7a9750f3e --- /dev/null +++ b/modules/admin-full/luasrc/model/cbi/admin_services/crontab.lua @@ -0,0 +1,35 @@ +--[[ +LuCI - Lua Configuration Interface + +Copyright 2008 Steven Barth <steven@midlink.org> +Copyright 2008 Jo-Philipp Wich <xm@leipzig.freifunk.net> + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +$Id$ +]]-- +local cronfile = "/etc/crontabs/root" + +f = SimpleForm("crontab", translate("a_s_crontab"), translate("a_s_crontab1")) + +t = f:field(TextValue, "crons") +t.rmempty = true +t.rows = 10 +function t.cfgvalue() + return luci.fs.readfile(cronfile) or "" +end + +function f.handle(self, state, data) + if state == FORM_VALID then + if data.crons then + luci.fs.writefile(cronfile, data.crons) + end + end + return true +end + +return f
\ No newline at end of file |