diff options
author | openshift-ci[bot] <75433959+openshift-ci[bot]@users.noreply.github.com> | 2022-06-21 18:08:31 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-21 18:08:31 +0000 |
commit | c9dce6353d780e249f8a1c3ab8c47f3df83ec679 (patch) | |
tree | 6af1bca684bbe3401f0d5edf8c57ab202aa1846c /libpod/networking_linux.go | |
parent | 7724eb07cea1965da598dfb3b959de53bb4c4a41 (diff) | |
parent | 2827140907255ed07422495e7108f783edd98d13 (diff) | |
download | podman-c9dce6353d780e249f8a1c3ab8c47f3df83ec679.tar.gz podman-c9dce6353d780e249f8a1c3ab8c47f3df83ec679.tar.bz2 podman-c9dce6353d780e249f8a1c3ab8c47f3df83ec679.zip |
Merge pull request #14659 from eriksjolund/setup_to_set_up_in_code
[CI:DOCS] "setup" -> "set up" in source code comments
Diffstat (limited to 'libpod/networking_linux.go')
-rw-r--r-- | libpod/networking_linux.go | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libpod/networking_linux.go b/libpod/networking_linux.go index ee80b00fe..cb1547a93 100644 --- a/libpod/networking_linux.go +++ b/libpod/networking_linux.go @@ -109,7 +109,7 @@ func (r *RootlessNetNS) getPath(path string) string { func (r *RootlessNetNS) Do(toRun func() error) error { err := r.ns.Do(func(_ ns.NetNS) error { // Before we can run the given function, - // we have to setup all mounts correctly. + // we have to set up all mounts correctly. // The order of the mounts is IMPORTANT. // The idea of the extra mount ns is to make /run and /var/lib/cni writeable @@ -419,7 +419,7 @@ func (r *Runtime) GetRootlessNetNs(new bool) (*RootlessNetNS, error) { if err != nil { return nil, errors.Wrap(err, "error creating rootless network namespace") } - // setup slirp4netns here + // set up slirp4netns here path := r.config.Engine.NetworkCmdPath if path == "" { var err error @@ -656,9 +656,9 @@ func (r *Runtime) configureNetNS(ctr *Container, ctrNS ns.NetNS) (status map[str return nil, err } - // setup rootless port forwarder when rootless with ports and the network status is empty, + // set up rootless port forwarder when rootless with ports and the network status is empty, // if this is called from network reload the network status will not be empty and we should - // not setup port because they are still active + // not set up port because they are still active if rootless.IsRootless() && len(ctr.config.PortMappings) > 0 && ctr.getNetworkStatus() == nil { // set up port forwarder for rootless netns netnsPath := ctrNS.Path() |