Just do what cron does, run the following as root
:
run-parts -v /etc/cron.weekly
… or the next one if you receive the “Not a directory: -v” error:
run-parts /etc/cron.weekly -v
Option -v
prints the script names before they are run.
Just do what cron does, run the following as root
:
run-parts -v /etc/cron.weekly
… or the next one if you receive the “Not a directory: -v” error:
run-parts /etc/cron.weekly -v
Option -v
prints the script names before they are run.