diff options
author | Brent Baude <bbaude@redhat.com> | 2021-08-12 12:55:07 -0500 |
---|---|---|
committer | Brent Baude <bbaude@redhat.com> | 2021-08-12 12:57:15 -0500 |
commit | bef26f2582733c23957a863bc0769a618ab773a8 (patch) | |
tree | 8c912ac25388be644b04082d09ac73f75768c67e /libpod/pod_api.go | |
parent | 94886d4abad7787cb920614ed26955ca36b13846 (diff) | |
download | podman-bef26f2582733c23957a863bc0769a618ab773a8.tar.gz podman-bef26f2582733c23957a863bc0769a618ab773a8.tar.bz2 podman-bef26f2582733c23957a863bc0769a618ab773a8.zip |
rename oneshot initcontainers to once
after the init containers pr merged, it was suggested to use `once`
instead of `oneshot` containers as it is more aligned with other
terminiology used similarily.
[NO TESTS NEEDED]
Signed-off-by: Brent Baude <bbaude@redhat.com>
Diffstat (limited to 'libpod/pod_api.go')
-rw-r--r-- | libpod/pod_api.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libpod/pod_api.go b/libpod/pod_api.go index 6fea2dfd8..716eb2e5b 100644 --- a/libpod/pod_api.go +++ b/libpod/pod_api.go @@ -32,14 +32,14 @@ func (p *Pod) startInitContainers(ctx context.Context) error { if rc != 0 { return errors.Errorf("init container %s exited with code %d", initCon.ID(), rc) } - // If the container is an oneshot init container, we need to remove it + // If the container is a once init container, we need to remove it // after it runs if initCon.Config().InitContainerType == define.OneShotInitContainer { icLock := initCon.lock icLock.Lock() if err := p.runtime.removeContainer(ctx, initCon, false, false, true); err != nil { icLock.Unlock() - return errors.Wrapf(err, "failed to remove oneshot init container %s", initCon.ID()) + return errors.Wrapf(err, "failed to remove once init container %s", initCon.ID()) } // Removing a container this way requires an explicit call to clean up the db if err := p.runtime.state.RemoveContainerFromPod(p, initCon); err != nil { |