diff options
author | Christian Poessinger <christian@poessinger.com> | 2020-03-17 18:39:45 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-17 18:39:45 +0100 |
commit | b6e368f265447ba391f0424d7cb73ad22f464c63 (patch) | |
tree | abece55283cb805133f79a803576a923a358bc30 /python | |
parent | 8f56d13e11eb98497d7d48bdd6ced465d88bb591 (diff) | |
parent | daeb4f2e29b9f6e9a739a354f89dc22f419bdece (diff) | |
download | vyos-1x-b6e368f265447ba391f0424d7cb73ad22f464c63.tar.gz vyos-1x-b6e368f265447ba391f0424d7cb73ad22f464c63.zip |
Merge pull request #246 from thomas-mangin/T1849-delay
ifconfig: T1849: buster fixed the delay issue
Diffstat (limited to 'python')
-rw-r--r-- | python/vyos/ifconfig/interface.py | 6 |
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) |