2
0
salt-formula/salt/gitfs/dulwich.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

22 lines
493 B
Plaintext

{% from "salt/map.jinja" import salt_settings with context %}
# issue 34
{% if salt_settings.gitfs.dulwich.install_from_source %}
# we probably don't have a package or it's not a high enough version
# install latest from source/pip
dulwich-deps:
pkg.installed:
- pkgs:
- build-essential
- python-dev
install-dulwich:
pip.installed:
- name: dulwich
{% else %}
# install from package
# TODO haven't actually found a distro that has a good version to test
{% endif %}