Saltstack Official Linux Formula
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

17 rindas
436B

  1. graph:
  2. {%- if pillar.get('linux', {}).system is defined %}
  3. {%- from "linux/map.jinja" import system with context %}
  4. - host: {{ grains.id }}
  5. service: linux.system
  6. type: software-system
  7. relations:
  8. {%- if system.repo is defined %}
  9. {%- for repo_name, repo in system.repo.iteritems() %}
  10. - service: apt.repo
  11. host_external: {{ repo.source }}
  12. direction: source
  13. type: tcp-http
  14. {%- endfor %}
  15. {%- endif %}
  16. {%- endif %}