ansible/playbooks/cleanup.yml

10 lines
242 B
YAML
Raw Normal View History

2022-03-07 10:46:02 -06:00
#!/usr/bin/env ansible-playbook
# vim:ft=ansible:
---
- hosts: all
gather_facts: no
tasks:
- name: touch ansible timestamp file
2022-06-16 23:45:29 -05:00
ansible.builtin.file: path=/var/lib/ansible-last-run state=touch mode='0644'
changed_when: no