Skip to content

Latest commit

 

History

History
22 lines (18 loc) · 469 Bytes

Crontab.md

File metadata and controls

22 lines (18 loc) · 469 Bytes

On minimized install VMs, crontab needs to be installed

sudo apt install cron
MAILTO="[email protected]"
SHELL=/bin/bash
HOME=/

# My scripts
0 5 * * * /administrator/scripts/backup_to_Crow.sh

# For testing purposes (runs pretty soon after saving)
# * * * * * /root/scripts/backup_to_Tom-Servo.sh
# * * * * * /root/scripts/permissions.sh

Add this to the end of a cron job line to disable notifications for that particular job

>/dev/null 2>&1