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.

gitpython.sls 248B

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