cron: add procd listeners for crontabs

Add procd file listeners to check files in `/etc/crontabs/`.

Also unified a bit the function style.

Signed-off-by: Paul Spooren <mail@aparcar.org>
v19.07.3_mercusys_ac12_duma
Paul Spooren 6 years ago committed by John Crispin
parent bb71a3f27e
commit cbf69fb2ad

@ -11,7 +11,7 @@ validate_cron_section() {
'cronloglevel:uinteger'
}
start_service () {
start_service() {
[ -z "$(ls /etc/crontabs/)" ] && return 1
loglevel="$(uci_get "system.@system[0].cronloglevel")"
@ -29,10 +29,12 @@ start_service () {
procd_open_instance
procd_set_param command "$PROG" -f -c /etc/crontabs -l "${loglevel:-5}"
for crontab in /etc/crontabs/*; do
procd_set_param file "$crontab"
done
procd_close_instance
}
service_triggers()
{
service_triggers() {
procd_add_validation validate_cron_section
}

Loading…
Cancel
Save