Merge pull request #21142 from justinsb/install_git_package

Salt: Make sure git is installed, for gitRepo volumes
pull/6/head
Joe Beda 2016-02-19 15:42:00 -08:00
commit 11c7068b74
1 changed files with 4 additions and 0 deletions

View File

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