Merge pull request #21142 from justinsb/install_git_package

Salt: Make sure git is installed, for gitRepo volumes
This commit is contained in:
Joe Beda 2016-02-19 15:42:00 -08:00
commit 11c7068b74

View File

@ -17,3 +17,7 @@ pkg-core:
{% if grains['os'] == 'Ubuntu' %} {% if grains['os'] == 'Ubuntu' %}
- netcat-traditional - netcat-traditional
{% endif %} {% endif %}
# Make sure git is installed for mounting git volumes
{% if grains['os'] == 'Ubuntu' %}
- git
{% endif %}