From f12071add992c8b76b1b065257ac306f83957653 Mon Sep 17 00:00:00 2001 From: Florian Eckert Date: Wed, 11 Nov 2020 15:52:20 +0100 Subject: [PATCH] docker-ce: set proto for docker bridge device to none Set proto from `static` to `none`. This makes it clear that this interface is not handled by the netifd. Signed-off-by: Florian Eckert --- utils/docker-ce/files/dockerd.init | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/docker-ce/files/dockerd.init b/utils/docker-ce/files/dockerd.init index b0878a472..d769b5b4d 100755 --- a/utils/docker-ce/files/dockerd.init +++ b/utils/docker-ce/files/dockerd.init @@ -67,7 +67,7 @@ uciadd() { uci_quiet add network interface uci_quiet rename network.@interface[-1]="${iface}" uci_quiet set network.@interface[-1].ifname="${device}" - uci_quiet set network.@interface[-1].proto="static" + uci_quiet set network.@interface[-1].proto="none" uci_quiet set network.@interface[-1].auto="0" uci_quiet commit network fi