From 3904a012fad31017553063d15dbc399da03dea45 Mon Sep 17 00:00:00 2001 From: Steven Barth Date: Sun, 17 Aug 2008 13:49:19 +0000 Subject: [PATCH] modules/admin-full: Added crontab configuration page --- i18n/english/luasrc/i18n/admin-core.en.lua | 5 ++- i18n/german/luasrc/i18n/admin-core.de.lua | 7 +++- .../luasrc/controller/admin/services.lua | 5 +++ .../model/cbi/admin_services/crontab.lua | 35 +++++++++++++++++++ 4 files changed, 50 insertions(+), 2 deletions(-) create mode 100644 modules/admin-full/luasrc/model/cbi/admin_services/crontab.lua diff --git a/i18n/english/luasrc/i18n/admin-core.en.lua b/i18n/english/luasrc/i18n/admin-core.en.lua index c516b31f99..ed69e01101 100644 --- a/i18n/english/luasrc/i18n/admin-core.en.lua +++ b/i18n/english/luasrc/i18n/admin-core.en.lua @@ -275,4 +275,7 @@ process_kill = "Kill" mem_cached = "cached" mem_buffered = "buffered" -mem_free = "free" \ No newline at end of file +mem_free = "free" + +a_s_crontab = "Scheduled Tasks" +a_s_crontab1 = "This is the system crontab in which scheduled tasks can be defined." \ No newline at end of file diff --git a/i18n/german/luasrc/i18n/admin-core.de.lua b/i18n/german/luasrc/i18n/admin-core.de.lua index 449d86fb14..2fcb8fbbc8 100644 --- a/i18n/german/luasrc/i18n/admin-core.de.lua +++ b/i18n/german/luasrc/i18n/admin-core.de.lua @@ -350,4 +350,9 @@ process_kill = "Töten" mem_cached = "gecached" mem_buffered = "gepuffert" -mem_free = "frei" \ No newline at end of file +mem_free = "frei" + +a_s_crontab = "Geplante Aufgaben" +a_s_crontab1 = "Dies ist die System-Crontab in der geplante Aufgaben definiert werden können." + +a_w_nasid = "NAS ID" \ No newline at end of file diff --git a/modules/admin-full/luasrc/controller/admin/services.lua b/modules/admin-full/luasrc/controller/admin/services.lua index 59defbbbdf..ea87585448 100644 --- a/modules/admin-full/luasrc/controller/admin/services.lua +++ b/modules/admin-full/luasrc/controller/admin/services.lua @@ -16,6 +16,11 @@ module("luci.controller.admin.services", package.seeall) function index() luci.i18n.loadc("admin-core") local i18n = luci.i18n.translate + + local page = node("admin", "services", "crontab") + page.target = form("admin_services/crontab") + page.title = i18n("a_s_crontab") + page.order = 50 local page = node("admin", "services") page.target = template("admin_services/index") 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 0000000000..7a9750f3e4 --- /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 +Copyright 2008 Jo-Philipp Wich + +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 -- 2.30.2