Saltstack Official Salt Formula
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

19 líneas
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 %}