Saltstack Official Salt Formula
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

19 lines
335B

  1. {% from "salt/map.jinja" import salt_settings with context %}
  2. {% if 'gitfs' in salt_settings and 'gitpython' in salt_settings.gitfs %}
  3. {% if salt_settings.gitfs.gitpython.install_from_source %}
  4. GitPython:
  5. pip.installed
  6. {% else %}
  7. python-git:
  8. pkg.installed:
  9. - name: {{ salt_settings.python_git }}
  10. {% endif %}
  11. {% endif %}