From: Jo-Philipp Wich Date: Fri, 22 Mar 2013 12:42:48 +0000 (+0000) Subject: modules/admin-full: notify crond after writing crontab (#559) X-Git-Url: https://git.archive.openwrt.org/?p=project%2Fluci.git;a=commitdiff_plain;h=fdf7d6618d9f46321c3aaffe6d177ceb30fc71cb;hp=21aba9c483dab8ae4a261218a75bc632fc8143e7 modules/admin-full: notify crond after writing crontab (#559) --- diff --git a/modules/admin-full/luasrc/model/cbi/admin_system/crontab.lua b/modules/admin-full/luasrc/model/cbi/admin_system/crontab.lua index 2ae5939c9..3e1b9d85d 100644 --- a/modules/admin-full/luasrc/model/cbi/admin_system/crontab.lua +++ b/modules/admin-full/luasrc/model/cbi/admin_system/crontab.lua @@ -2,7 +2,7 @@ LuCI - Lua Configuration Interface Copyright 2008 Steven Barth -Copyright 2008 Jo-Philipp Wich +Copyright 2008-2013 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. @@ -29,6 +29,7 @@ function f.handle(self, state, data) if state == FORM_VALID then if data.crons then fs.writefile(cronfile, data.crons:gsub("\r\n", "\n")) + luci.sys.call("/usr/bin/crontab %q" % cronfile) end end return true