Salt: Make sure git is installed, for gitRepo volumes

Seems to be included in the GCE base image, but not on the images we use
on AWS (Ubuntu images).

Fix #20957
This commit is contained in:
Justin Santa Barbara 2016-02-12 08:32:24 -05:00
parent b5c12d10b8
commit f0d6fd10bc

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 %}