mirror of https://github.com/docker/docs.git
Delete bridge after powering daemon down
Signed-off-by: Nathan LeClaire <nathan.leclaire@gmail.com>
This commit is contained in:
parent
9775f9ec04
commit
a020c3eac7
|
@ -112,6 +112,10 @@ func ConfigureAuth(p Provisioner) error {
|
|||
return err
|
||||
}
|
||||
|
||||
if _, err := p.SSHCommand("sudo ip link delete docker0"); err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
// upload certs and configure TLS auth
|
||||
caCert, err := ioutil.ReadFile(authOptions.CaCertPath)
|
||||
if err != nil {
|
||||
|
|
Loading…
Reference in New Issue