dcron icon indicating copy to clipboard operation
dcron copied to clipboard

dillon's lightweight cron daemon

Results 30 dcron issues
Sort by recently updated
recently updated
newest added

That would be most welcome for running `dcron` in a docker container. Then there'd no need to set up mail, and `docker logs` could be used to inspect what's going...

After merging of #3, my @daily @hourly etc jobs are not run. I've reverted back to 6186237 and they are run again.

Hi! I switched from Arch to Void, and am now on musl, runit, dcron and rsyslog (hugs rsyslog, I missed you sooo much). Like systemd, runit does not detach jobs....

I'd like to understand why this implementation of `crontab` [is designed to exit zero](https://github.com/dubiousjim/dcron/blob/master/crontab.c#L155) when asking to list a crontab for a user that doesn't have a spool file. To...

- defs.h: #define PIDFILE (default /var/run/crond.pid). - subs.c: make fdprintf return a status, as required by the change in main.c. - main.c: create a pid file by default; add options...

dcron claims to support "system" crontabs, but differs in implementation to other crons by running jobs as root instead of allowing each job to have user specified. Implement this behaviour,...

$ cat /etc/cron.d/zfs-auto-snapshot > PATH="/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin" > > */15 * * * * root which zfs-auto-snapshot > /dev/null || exit 0 ; zfs-auto-snapshot --quiet --syslog --label=frequent --keep=4 // git clone, make,...

If job Y is waiting on job X (```AFTER=X```) but job X (```ID=X```) does not generate a cronstamp (because it's not scheduled via ```FREQ```, but via the "classic" fields), then...

Some changes to make dcron more Docker friendly. - Added a fix for EPERM issues when in foreground and already being PID 1. - Fix a readability issue. - Added...