17 lines
562 B
YAML
Raw Normal View History

---
# Tasks related to starting ansible-pull
# EG: Start timer, kill conflicting jobs, etc
- name: General | Start | Ansible Pull Report | Start File
shell: "echo 'START' > {{ ansible_pull_report }}"
when: leet_drive_details.stat.exists
- name: General | Start | Ansible Pull Report | Make Viewable (SSHFS)
2021-02-06 08:11:33 -06:00
file:
path: "{{ ansible_pull_report }}"
mode: '0777'
when: leet_drive_details.stat.exists
2021-02-06 08:11:33 -06:00
- name: General | Start | Ansible Pull Report | Add Date Entry
shell: "date >> {{ ansible_pull_report }}"
when: leet_drive_details.stat.exists