diff options
author | Eduardo Otubo <otubo@redhat.com> | 2021-01-07 16:51:30 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-07 10:51:30 -0500 |
commit | ea6fcc14909eda6c2409658e897c6ebd5157e290 (patch) | |
tree | 0f305b7a3ee21039cd915d4b4eda15ca7d83668e /tests/unittests | |
parent | aa1014cae2e326109581d4624f3a195a89369fd7 (diff) | |
download | vyos-cloud-init-ea6fcc14909eda6c2409658e897c6ebd5157e290.tar.gz vyos-cloud-init-ea6fcc14909eda6c2409658e897c6ebd5157e290.zip |
Missing IPV6_AUTOCONF=no to render sysconfig dhcp6 stateful on RHEL (#753)
IPV6_AUTOCONF needs to be set to 'no' on RHEL so NetworkManager can
properly acquire ipv6 address.
rhbz: #1859695
Signed-off-by: Eduardo Otubo <otubo@redhat.com>
Diffstat (limited to 'tests/unittests')
-rw-r--r-- | tests/unittests/test_net.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/unittests/test_net.py b/tests/unittests/test_net.py index 8b34e0c9..bf0cdabb 100644 --- a/tests/unittests/test_net.py +++ b/tests/unittests/test_net.py @@ -1369,6 +1369,7 @@ NETWORK_CONFIGS = { DEVICE=iface0 DHCPV6C=yes IPV6INIT=yes + IPV6_AUTOCONF=no IPV6_FORCE_ACCEPT_RA=yes DEVICE=iface0 NM_CONTROLLED=no |