cron0 2 * * 0

Ansible Weekly Patch Run — Sunday 2 AM

At 02:00, on Sunday

Ansible playbook scheduled every Sunday at 2:00 AM for weekly server patching, package updates, and configuration management. Low-traffic window ensures minimal user impact during maintenance.

Weekly1 per week runs/day

Want to customize this schedule or validate your own cron expression?

Try it live →

Field Breakdown

FieldValueMeaning
minute00
hour22
day*every day of month
month*every month
weekday0Sunday
0
minute
2
hour
*
day
*
month
0
weekday

Lint Analysis

Info

This time may fall within a DST transition gap for some timezones. Jobs could be skipped or run twice.

Common Use Cases

  • Ansible OS patching Sunday
  • Package update playbook weekly
  • Configuration drift remediation
  • Server hardening weekly run

Code Examples

Bash / crontab
# Run your script on schedule: 0 2 * * 0
0 2 * * 0 /path/to/your/script.sh
Node.js (node-cron)
import cron from 'node-cron';

cron.schedule('0 2 * * 0', () => {
  console.log('Running scheduled task');
});
Python (APScheduler)
from apscheduler.schedulers.blocking import BlockingScheduler

scheduler = BlockingScheduler()

@scheduler.scheduled_job('cron', minute='0', hour='2', day_of_week='0')
def my_job():
    print('Running scheduled task')

scheduler.start()

GitHub Actions Workflow

Generate a ready-to-use .github/workflows/schedule.yml file. Customize the name and download directly.

GitHub Actions
# .github/workflows/schedule.yml
name: Ansible Weekly Patch Run — Sunday 2 AM

on:
  schedule:
    - cron: '0 2 * * 0'
  workflow_dispatch: # allow manual trigger

jobs:
  run:
    runs-on: ubuntu-latest
    steps:
      - name: Checkout code
        uses: actions/checkout@v4

      - name: Run scheduled task
        run: |
          echo "Running on schedule: 0 2 * * 0"
          # Add your commands here

Save as .github/workflows/schedule.yml in your repository root

Cron Syntax Quick Reference

FieldAllowed ValuesSpecial Chars
minute0–59* , - /
hour0–23* , - /
day of month1–31* , - /
month1–12 or JAN–DEC* , - /
day of week0–7 or SUN–SAT* , - /

Special characters: *= any value  ,= list  -= range  / = step

Related Patterns — Weekly

Need to build your own cron expression from scratch?

Open the Cron Expression Builder →