dcron
dcron copied to clipboard
In run-parts, report script failures into stderr, not stdout.
I suggest changing $SCRIPT || echo "$SCRIPT" failed
into, say
$SCRIPT || echo "$SCRIPT" failed 1>&2
.
Motivation: most cron strings ignore standard output.