add the currencies refresh cronjob to the ansible role

This commit is contained in:
Andreas Zweili 2018-01-13 10:55:40 +01:00
parent 0048475a2d
commit eed61deedd
1 changed files with 8 additions and 0 deletions

View File

@ -43,5 +43,13 @@
group: www-data
mode: 0755
- name: Add currency refresh cronjob
cron:
name: "refresh currencies"
minute: "0"
job: "wget -O /dev/null https://didgeridoo.ml/currencies"
- name: Restart apache service
service: name=apache2 state=restarted