1
0
Fork 0
myserver-configuration/roles/cloud/tasks/cron.yml

8 lines
202 B
YAML
Raw Permalink Normal View History

---
- name: Ensure a job that run all 5 minutes for nextcloud cron
ansible.builtin.cron:
name: "check dirs"
minute: "*/5"
2023-05-21 15:19:59 +02:00
job: "cd {{ ansible_env.HOME }}/cloud && ./cron.sh"
become: yes