Files
AvianVisitors/templates/cleanup.cron
T
David Lamkin 92f2540792 Use posix sh compatible redirect in crontab
&> is a bash shortcut to redirect both stdout and stderr
it is more portable to use '>/dev/null 2>&1' to achieve this effect.

Without this change the pi mailbox is filled with cron job output
2022-05-21 17:22:22 +01:00

7 lines
206 B
Plaintext

#birdnet
*/5 * * * * $USER /usr/local/bin/disk_check.sh >/dev/null 2>&1
#birdnet
*/3 * * * * $USER /usr/local/bin/cleanup.sh >/dev/null 2>&1
#birdnet
@reboot $USER /usr/local/bin/cleanup.sh >/dev/null 2>&1