Skip to content

Commit e696869

Browse files
committed
change frequency to once a day only
1 parent ae9e379 commit e696869

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -157,3 +157,4 @@ deploy/provision:
157157
deploy/app:
158158
@echo "Deploying version $(V) to a remote server"
159159
$(DEPLOY_CMD) playbooks/03_app.yml --extra-vars "app_version=$(V)"
160+
$(DEPLOY_CMD) playbooks/04_cron.yml

deploy/playbooks/04_cron.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,6 @@
55
- name: "Download pretalx data every hour"
66
ansible.builtin.cron:
77
name: "Download pretalx data every hour"
8-
minute: "5" # run on the 5th minute of every hour
8+
minute: "5"
9+
hour: "8" # run once a day at 08:05 am
910
job: "make prod/cron/pretalx"

0 commit comments

Comments
 (0)