Feat(Choux): Add testing vars

This commit is contained in:
Bertrand Benjamin 2018-12-17 08:16:05 +01:00
parent 7e358f1e09
commit a49806d951
2 changed files with 9 additions and 0 deletions

View File

@ -8,6 +8,7 @@
- vars/Choux.yml
tasks:
- include: tasks/test.yml
- include: tasks/arch_CLI_packages.yml
- include: tasks/zsh.yml
- include: tasks/users.yml

8
tasks/test.yml Normal file
View File

@ -0,0 +1,8 @@
---
- debug:
msg: "{{ ansible_facts }}"
- name: Display all variables/facts known for a host
debug:
var: hostvars[inventory_hostname]
verbosity: 4