Fix typos found by codespell
Brought to you by make codespell Signed-off-by: Kir Kolyshkin <kolyshkin@gmail.com>
This commit is contained in:
parent
6732cd413d
commit
a263ddda2d
|
@ -590,7 +590,7 @@ Number of seconds to wait for container to exit before sending kill signal.
|
||||||
|
|
||||||
**exit_command_delay**=300
|
**exit_command_delay**=300
|
||||||
|
|
||||||
Number of seconds to wait for the API process for the exec call before sending exit command mimicing the Docker behavior of 5 minutes (in seconds).
|
Number of seconds to wait for the API process for the exec call before sending exit command mimicking the Docker behavior of 5 minutes (in seconds).
|
||||||
|
|
||||||
**tmp_dir**="/run/libpod"
|
**tmp_dir**="/run/libpod"
|
||||||
|
|
||||||
|
|
|
@ -121,7 +121,7 @@ func (n *netavarkNetwork) networkCreate(newNetwork *types.Network, defaultNet bo
|
||||||
return nil, errors.Wrapf(types.ErrInvalidArg, "unsupported driver %s", newNetwork.Driver)
|
return nil, errors.Wrapf(types.ErrInvalidArg, "unsupported driver %s", newNetwork.Driver)
|
||||||
}
|
}
|
||||||
|
|
||||||
// add gatway when not internal or dns enabled
|
// add gateway when not internal or dns enabled
|
||||||
addGateway := !newNetwork.Internal || newNetwork.DNSEnabled
|
addGateway := !newNetwork.Internal || newNetwork.DNSEnabled
|
||||||
err = internalutil.ValidateSubnets(newNetwork, addGateway, usedNetworks)
|
err = internalutil.ValidateSubnets(newNetwork, addGateway, usedNetworks)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
|
|
@ -245,7 +245,7 @@ func parseNetwork(network *types.Network) error {
|
||||||
return errors.Errorf("invalid network ID %q", network.ID)
|
return errors.Errorf("invalid network ID %q", network.ID)
|
||||||
}
|
}
|
||||||
|
|
||||||
// add gatway when not internal or dns enabled
|
// add gateway when not internal or dns enabled
|
||||||
addGateway := !network.Internal || network.DNSEnabled
|
addGateway := !network.Internal || network.DNSEnabled
|
||||||
return util.ValidateSubnets(network, addGateway, nil)
|
return util.ValidateSubnets(network, addGateway, nil)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue