Saltstack Official Salt Formula
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

19 linhas
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 %}