summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Mangin <thomas.mangin@exa.net.uk>2020-03-16 16:59:43 +0000
committerThomas Mangin <thomas.mangin@exa.net.uk>2020-03-16 16:59:43 +0000
commitdaeb4f2e29b9f6e9a739a354f89dc22f419bdece (patch)
treed7ce02f1ea734960fd62c79cdaee4460d769bc24
parentf20ffaf1b493a42adafdc9db09c8c5af3bee1b14 (diff)
downloadvyos-1x-daeb4f2e29b9f6e9a739a354f89dc22f419bdece.tar.gz
vyos-1x-daeb4f2e29b9f6e9a739a354f89dc22f419bdece.zip
ifconfig: T1849: buster fixed the delay issue
-rw-r--r--python/vyos/ifconfig/interface.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/python/vyos/ifconfig/interface.py b/python/vyos/ifconfig/interface.py
index a750bda3f..b002e0171 100644
--- a/python/vyos/ifconfig/interface.py
+++ b/python/vyos/ifconfig/interface.py
@@ -741,12 +741,6 @@ class Interface(Control):
with open(self._dhcpv6_cfg_file, 'w') as f:
f.write(dhcpv6_text)
- # https://bugs.launchpad.net/ubuntu/+source/ifupdown/+bug/1447715
- #
- # wee need to wait for IPv6 DAD to finish once and interface is added
- # this suxx :-(
- sleep(5)
-
# no longer accept router announcements on this interface
self._write_sysfs('/proc/sys/net/ipv6/conf/{}/accept_ra'
.format(self.config['ifname']), 0)