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.

dulwich.sls 493B

123456789101112131415161718192021
  1. {% from "salt/map.jinja" import salt_settings with context %}
  2. # issue 34
  3. {% if salt_settings.gitfs.dulwich.install_from_source %}
  4. # we probably don't have a package or it's not a high enough version
  5. # install latest from source/pip
  6. dulwich-deps:
  7. pkg.installed:
  8. - pkgs:
  9. - build-essential
  10. - python-dev
  11. install-dulwich:
  12. pip.installed:
  13. - name: dulwich
  14. {% else %}
  15. # install from package
  16. # TODO haven't actually found a distro that has a good version to test
  17. {% endif %}