# m h dom mon dow command # schedule season pulls every 6 hours 0 */6 * * * python /app/pull_cfbd_games.py >> /var/log/season_cfbd.log 2>&1 0 */6 * * * python /app/pull_massey_games.py >> /var/log/season_massey.log 2>&1 # schedule weekly updates every 30 seconds * * * * * python /app/pull_current_week.py >> /var/log/week_sync.log 2>&1 # * * * * * ( sleep 15 ; python /app/pull_current_week.py >> /var/log/week_sync.log 2>&1 ) * * * * * ( sleep 30 ; python /app/pull_current_week.py >> /var/log/week_sync.log 2>&1 ) # * * * * * ( sleep 45 ; python /app/pull_current_week.py >> /var/log/week_sync.log 2>&1 )