mirror of https://github.com/docker/docs.git
Merge pull request #2214 from nathanleclaire/delete_bridge
Delete bridge after powering daemon down
This commit is contained in:
commit
a0b75d1645
|
@ -112,6 +112,10 @@ func ConfigureAuth(p Provisioner) error {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if _, err := p.SSHCommand("sudo ip link delete docker0"); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
// upload certs and configure TLS auth
|
// upload certs and configure TLS auth
|
||||||
caCert, err := ioutil.ReadFile(authOptions.CaCertPath)
|
caCert, err := ioutil.ReadFile(authOptions.CaCertPath)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
|
Loading…
Reference in New Issue