fix crontab quoting issue, add CTY-3117

This commit is contained in:
Dirk Koopman 2021-07-15 19:40:18 +01:00
parent 94bbcdee6e
commit 5af31b9f39
5 changed files with 7639 additions and 7548 deletions

View File

@ -1,3 +1,7 @@
15Jul21=======================================================================
1. Fix long standing bug in crontabs that commands with " rather than ' around
strings could cause those commands not to work.
2. Add CTY 3117 prefixes.
09Jul20=======================================================================
1. Add RBN.mojo and update UPGRADE.mojo.
2. Add CTY-3011 prefixes

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -148,7 +148,7 @@ sub process
if ($cron->{cmd}) {
dbg("cron: $min $hour $mday $mon $wday -> doing '$cron->{cmd}'") if isdbg('cron');
eval "$cron->{cmd}";
eval $cron->{cmd};
dbg("cron: cmd error $@") if $@ && isdbg('cron');
}
}