AWS: install netcat-traditional, instead of netcat-openbsd

We want to match the version of netcat that is installed on GCE.  We
were having problems with netcat-openbsd having slightly different
timeout behaviour (on UDP packets; when there was no listener).
This commit is contained in:
Justin Santa Barbara 2015-10-19 14:21:17 -04:00
parent cadb6c06be
commit 726c7afab7

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