Dangit, cancelled the ansible-pull job again. Also fix root cron being done twice.

This commit is contained in:
2021-02-06 07:49:11 -06:00
parent fc3953ae29
commit 62aefb0ffb
3 changed files with 5 additions and 15 deletions

View File

@ -13,8 +13,8 @@
- name: General | Cron | Ansible | Create Heartbeat Job
cron:
user: ansible
name: "Ansible Sync"
name: "Heartbeat Report"
minute: "*/15"
job: "echo {{ ansible_date_time.iso8601_basic_short }} > {{ heartbeat_report }}; chmod 777 {{ heartbeat_report }}"
job: "date > {{ heartbeat_report }}; chmod 777 {{ heartbeat_report }}"
state: present
disabled: no