Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2018
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. - hosts: "{{ exec_host }}"
  2. tasks:
  3. - name: Echo
  4. shell: echo "Black"
  5. register: echo
  6. - name: Echo two
  7. set_fact:
  8. myvars: "{{ echo.stdout }}"
  9. when: echo.stdout == 'Black'
  10.  
  11. - debug:
  12. msg: "{{ myvars }}"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement