Advertisement
Guest User

Untitled

a guest
Apr 24th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. {% set hosts = ['1', '2', '3'] %}
  2. {% set addrs = [] %}
  3. {% for addr in addrs %}
  4. {% do addrs.append(addr ~ "4161") %}
  5. {% endfor %}
  6.  
  7. debug:
  8. test.show_notification:
  9. - name: Debug Information
  10. - text: |
  11. abc
  12. {{ addrs | join(' ' ) }}
  13. cbd
  14.  
  15. Output:
  16.  
  17. Comment: abc
  18.  
  19. cbd
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement