13 lines
322 B
YAML
13 lines
322 B
YAML
|
#!/usr/bin/env ansible-playbook
|
||
|
# vim:ft=ansible:
|
||
|
---
|
||
|
# Preambulatory system configuration
|
||
|
- hosts: all
|
||
|
tasks:
|
||
|
- name: collect service facts
|
||
|
service_facts:
|
||
|
tags: [ always ]
|
||
|
- name: touch ansible timestamp file
|
||
|
file: path=/var/lib/ansible-last-run state=touch mode='0644'
|
||
|
changed_when: no
|