Saltstack Official Salt Formula
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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