2022-03-07 10:46:02 -06:00
|
|
|
#!/usr/bin/env ansible-playbook
|
|
|
|
# vim:ft=ansible:
|
|
|
|
---
|
2022-04-18 11:18:34 -05:00
|
|
|
- hosts: all
|
|
|
|
gather_facts: no
|
|
|
|
tasks:
|
|
|
|
- name: touch ansible timestamp file
|
|
|
|
file: path=/var/lib/ansible-last-run state=touch mode='0644'
|
|
|
|
changed_when: no
|