modules/admin-full: notify crond after writing crontab (#559)
This commit is contained in:
parent
21aba9c483
commit
fdf7d6618d
1 changed files with 2 additions and 1 deletions
|
@ -2,7 +2,7 @@
|
||||||
LuCI - Lua Configuration Interface
|
LuCI - Lua Configuration Interface
|
||||||
|
|
||||||
Copyright 2008 Steven Barth <steven@midlink.org>
|
Copyright 2008 Steven Barth <steven@midlink.org>
|
||||||
Copyright 2008 Jo-Philipp Wich <xm@leipzig.freifunk.net>
|
Copyright 2008-2013 Jo-Philipp Wich <xm@subsignal.org>
|
||||||
|
|
||||||
Licensed under the Apache License, Version 2.0 (the "License");
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
you may not use this file except in compliance with 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 state == FORM_VALID then
|
||||||
if data.crons then
|
if data.crons then
|
||||||
fs.writefile(cronfile, data.crons:gsub("\r\n", "\n"))
|
fs.writefile(cronfile, data.crons:gsub("\r\n", "\n"))
|
||||||
|
luci.sys.call("/usr/bin/crontab %q" % cronfile)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
return true
|
return true
|
||||||
|
|
Loading…
Reference in a new issue