Guest User

Untitled

a guest
Jun 23rd, 2013
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ---
  2. - hosts: all
  3.  
  4. vars:
  5. argh: blah
  6.  
  7. tasks:
  8.  
  9. # works
  10. - name: test 1
  11. command: echo ${argh}
  12.  
  13. # works
  14. - name: test 1
  15. command: echo {{argh}}
  16.  
  17. # works
  18. - name: test 3
  19. action: command echo {{argh}}
Advertisement
Add Comment
Please, Sign In to add comment