21 lines
546 B
YAML
Raw Normal View History

---
# Jobs relating to the ansible user.
- name: General | Cron | Ansible | Create Subscriber Job
cron:
2021-01-10 15:52:21 -06:00
user: ansible
name: "Ansible Sync"
minute: "*/15"
2021-02-03 21:32:03 -06:00
job: "sudo {{ ansible_pull_exec.stdout }} -o -U https://github.com/Hyperling/ansible.git"
2020-12-21 05:53:22 -06:00
state: present
2021-01-16 15:42:56 -06:00
disabled: no
- name: General | Cron | Ansible | Create Heartbeat Job
cron:
user: ansible
name: "Heartbeat Report"
minute: "*/15"
2021-02-06 09:42:47 -06:00
job: "sudo date > {{ heartbeat_report }}; chmod 777 {{ heartbeat_report }}"
state: present
disabled: no