2
0
salt-formula/salt/gitfs/gitpython.sls
Matthew X. Economou 14b466e022 Change variable lookup to match usage in other states
Done at the maintainer's request.
2015-07-14 09:40:16 -04:00

15 lines
248 B
Plaintext

{% from "salt/map.jinja" import salt_settings with context %}
{% if salt_settings.gitfs.gitpython.install_from_source %}
GitPython:
pip.installed
{% else %}
python-git:
pkg.installed:
- name: {{ salt_settings.python_git }}
{% endif %}