2
0
salt-formula/salt/gitfs/gitpython.sls
Brian Jackson 4533cc7d0e Add modules to install gitfs backend dependencies
Add modules for gitfs dependencies and documentation for how to use them.
2015-03-25 21:52:29 -05:00

14 lines
204 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
{% endif %}