Advertisement
Guest User

Untitled

a guest
Jun 6th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. {% set path = "files/default/" ~ grains['os'] ~ "/" ~ grains['osmajorrelease'] ~ "/" %}
  2. /tmp/path.txt:
  3. file.managed:
  4. - contents: |
  5. {{ path }}
  6. {% for file in salt.cp.list_master(prefix=path) %}
  7. {% set path_tokens = file.split('/') %}
  8. {{ file }}:
  9. module.run:
  10. - name: test.echo
  11. - text: {{ file }}
  12. {% endfor %}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement