Browse Source

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 <fe@dev.tdt.de>
lilik-openwrt-22.03
Florian Eckert 4 years ago
parent
commit
f12071add9
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      utils/docker-ce/files/dockerd.init

+ 1
- 1
utils/docker-ce/files/dockerd.init View File

@ -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


Loading…
Cancel
Save