We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4ab439 commit b1acc0eCopy full SHA for b1acc0e
deploy/playbooks/04_cron.yml
@@ -2,18 +2,21 @@
2
hosts: intbot_app
3
4
tasks:
5
+ - name: "Wipe user's crontab"
6
+ command: crontab -r
7
+
8
- name: "Download pretalx data once a day"
9
ansible.builtin.cron:
- name: "Download pretalx data once a day at 05:05am"
10
+ name: "Download pretalx data once a day at 06:05am"
11
minute: "5"
- hour: "5"
12
+ hour: "6"
13
job: "make prod/cron/pretalx"
14
15
- name: "Download pretix data once a day"
16
- name: "Download pretix data once a day at 06:05am"
17
+ name: "Download pretix data once a day at 07:05am"
18
- hour: "6"
19
+ hour: "7"
20
job: "make prod/cron/pretix"
21
22
- name: "Schedule standup message on Monday morning"
0 commit comments