# OS partition backup - rem set this up 00 04 * * * rsync -avxHAX  --exclude 'media' / /media/drive2/backup_auto/     # SQL Backups # On reboot, kept until next boot @reboot mysqldump --opt -u root -p -A > /media/drive2/db-backups/backup-reboot.sql > /home/faggot/cron/logs/sql-backup-reboot # Daily backups, kept for a week @daily sh  /home/faggot/cron/scripts/sql-backup-daily > /home/faggot/cron/logs/sql-backup-daily # Monthly, kept for a year @monthly sh /home/faggot/cron/scripts/sql-backup-monthly > /home/faggot/cron/logs/sql-backup-monthly # Yearly, kept indefinitely @yearly sh /home/faggot/cron/scripts/sql-backup-yearly > /home/faggot/cron/logs/sql-backup-yearly     # Search stuff setup by ctrls # for each board, you should have something like this (both lines): # */2 * * * * /usr/bin/indexer soc_delta --rotate --quiet # 0 */3 * * * /usr/bin/indexer soc_main --rotate --quiet # /mlp/ */2 * * * * /usr/bin/indexer mlp_delta --rotate --quiet 0 */3 * * * /usr/bin/indexer mlp_main --rotate --quiet # /tg/ */2 * * * * /usr/bin/indexer tg_delta --rotate --quiet 0 */3 * * * /usr/bin/indexer tg_main --rotate --quiet # /co/ */2 * * * * /usr/bin/indexer co_delta --rotate --quiet 0 */3 * * * /usr/bin/indexer co_main --rotate --quiet # /d/ */2 * * * * /usr/bin/indexer d_delta --rotate --quiet 0 */3 * * * /usr/bin/indexer d_main --rotate --quiet # /neigh/ */2 * * * * /usr/bin/indexer neigh_delta --rotate --quiet 0 */3 * * * /usr/bin/indexer neigh_main --rotate --quiet     # Make sure stats stuff is working @hourly munin-node > /tmp/cron.munin-node 2>&1 @hourly vnstatd -d > /tmp/cron.vnstatd 2>&1     # Startup script @reboot sh  /home/faggot/startup