Browse Source

Fix a bug on Ubuntu Trusty where static ipv6 addresses aren't fast enough available.

Signed-off-by: Rene Jochum <rene@jochums.at>
pull/9/head
Rene Jochum 8 years ago
parent
commit
7e7d521348
1 changed files with 5 additions and 0 deletions
  1. +5
    -0
      network/interfaces.sls

+ 5
- 0
network/interfaces.sls View File

@@ -66,6 +66,11 @@ dhclient_conf:
- require:
- pkg: packages
{% endif %}
# Fixes a bug on Ubuntu Trusty where static ipv6 addresses aren't fast enough available.
{% if grains['os'] == 'Ubuntu' and grains['oscodename'] == 'trusty' %}
- post_up_cmds:
- /bin/sleep 2
{% endif %}
{% endfor %}

{% if pkgs|length > 0 %}

Loading…
Cancel
Save