The following pull request was submitted through Github. It can be accessed and reviewed at: https://github.com/lxc/lxd/pull/3728
This e-mail was sent by the LXC bot, direct replies will not reach the author unless they happen to be subscribed to this list. === Description (from pull-request) === - except just link-local
From d075d9f35cac33ba1a44b2a3163b1efa0c272125 Mon Sep 17 00:00:00 2001 From: jav <[email protected]> Date: Mon, 28 Aug 2017 11:40:47 +0200 Subject: [PATCH] LXD Network ovs bridge - Error with interfaces ipv6 link-local - except just link-local #3727 --- lxd/networks.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lxd/networks.go b/lxd/networks.go index de0b7d840..25890c7ef 100644 --- a/lxd/networks.go +++ b/lxd/networks.go @@ -666,7 +666,7 @@ func (n *network) Start() error { } addrs, err := iface.Addrs() - if err == nil && len(addrs) != 0 { + if err == nil && len(addrs) > 1 { return fmt.Errorf("Only unconfigured network interfaces can be bridged") }
_______________________________________________ lxc-devel mailing list [email protected] http://lists.linuxcontainers.org/listinfo/lxc-devel
