Advertisement
jtyr

Untitled

Dec 13th, 2016
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. $ cat ./hosts
  2. [group1]
  3. localhost
  4.  
  5. [group1:children]
  6. group2
  7.  
  8. [group2]
  9. # is empty
  10.  
  11. $ cat group_vars/group1
  12. ---
  13. xxx: 1
  14. yyy: 1
  15.  
  16. $ cat group_vars/group2
  17. ---
  18. xxx: 2
  19.  
  20. $ cat site.yaml
  21. ---
  22. - hosts: all
  23. gather_facts: no
  24. connection: local
  25. tasks:
  26. - debug:
  27. msg: "xxx: {{ xxx }}; yyy: {{ yyy }}"
  28. # Expecting to print out: "xxx: 2; yyy: 1"
  29. # Instead this is printed out: "xxx: 1; yyy: 1"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement