ansible-qubes/examples/ansible/test-facts.yml
Robin Schneider 057d2f2ea5
Improved coding style as it is used in the DebOps project.
* Use YAML syntax which is better human readable.
* Try to use Ansible modules for operations when this is possible.
* `template/dumpenv/dumpenv.j2` seems to be missing.
2016-01-08 10:42:02 +01:00

10 lines
147 B
YAML

---
- hosts: all:!nonqubes
tasks:
- name: cat the contents of file /etc/passwd
shell: head /etc/passwd
- include: 'tasks/dumpenv.yml'