Skip to content

Update cron settings #34

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 12, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 7 additions & 4 deletions deploy/playbooks/04_cron.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,21 @@
hosts: intbot_app

tasks:
- name: "Wipe user's crontab"
command: crontab -r

- name: "Download pretalx data once a day"
ansible.builtin.cron:
name: "Download pretalx data once a day at 05:05am"
name: "Download pretalx data once a day at 06:05am"
minute: "5"
hour: "5"
hour: "6"
job: "make prod/cron/pretalx"

- name: "Download pretix data once a day"
ansible.builtin.cron:
name: "Download pretix data once a day at 06:05am"
name: "Download pretix data once a day at 07:05am"
minute: "5"
hour: "6"
hour: "7"
job: "make prod/cron/pretix"

- name: "Schedule standup message on Monday morning"
Expand Down