Merge pull request #15920 from justinsb/ubuntu_install_netcat_traditional

AWS: install netcat-traditional, instead of netcat-openbsd
This commit is contained in:
Jeff Lowdermilk 2015-10-21 13:16:01 -07:00
commit a65d8d696e

View File

@ -12,3 +12,9 @@ pkg-core:
- glusterfs-client
- socat
{% endif %}
# Ubuntu installs netcat-openbsd by default, but on GCE/Debian netcat-traditional is installed.
# They behave slightly differently.
# For sanity, we try to make sure we have the same netcat on all OSes (#15166)
{% if grains['os'] == 'Ubuntu' %}
- netcat-traditional
{% endif %}