summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2020-03-17 18:39:45 +0100
committerGitHub <noreply@github.com>2020-03-17 18:39:45 +0100
commitb6e368f265447ba391f0424d7cb73ad22f464c63 (patch)
treeabece55283cb805133f79a803576a923a358bc30
parent8f56d13e11eb98497d7d48bdd6ced465d88bb591 (diff)
parentdaeb4f2e29b9f6e9a739a354f89dc22f419bdece (diff)
downloadvyos-1x-b6e368f265447ba391f0424d7cb73ad22f464c63.tar.gz
vyos-1x-b6e368f265447ba391f0424d7cb73ad22f464c63.zip
Merge pull request #246 from thomas-mangin/T1849-delay
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)