diff options
author | Daniel J Walsh <dwalsh@redhat.com> | 2022-08-25 16:31:53 -0400 |
---|---|---|
committer | Daniel J Walsh <dwalsh@redhat.com> | 2022-08-25 16:32:31 -0400 |
commit | 9553f3bafad264367a8a642a17239c0d87c18090 (patch) | |
tree | c359692a1ce8971a63fd9e3a3cf84e2f7b9176fd /libpod/container_internal_unsupported.go | |
parent | bb7ae54ef70fb7af401aee3ff20000ae60854e09 (diff) | |
download | podman-9553f3bafad264367a8a642a17239c0d87c18090.tar.gz podman-9553f3bafad264367a8a642a17239c0d87c18090.tar.bz2 podman-9553f3bafad264367a8a642a17239c0d87c18090.zip |
Run codespell
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Diffstat (limited to 'libpod/container_internal_unsupported.go')
-rw-r--r-- | libpod/container_internal_unsupported.go | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libpod/container_internal_unsupported.go b/libpod/container_internal_unsupported.go index de92ff260..074aeee47 100644 --- a/libpod/container_internal_unsupported.go +++ b/libpod/container_internal_unsupported.go @@ -69,21 +69,21 @@ func (c *Container) restore(ctx context.Context, options ContainerCheckpointOpti // getHostsEntries returns the container ip host entries for the correct netmode func (c *Container) getHostsEntries() (etchosts.HostEntries, error) { - return nil, errors.New("unspported (*Container) getHostsEntries") + return nil, errors.New("unsupported (*Container) getHostsEntries") } // Fix ownership and permissions of the specified volume if necessary. func (c *Container) fixVolumePermissions(v *ContainerNamedVolume) error { - return errors.New("unspported (*Container) fixVolumePermissions") + return errors.New("unsupported (*Container) fixVolumePermissions") } func (c *Container) expectPodCgroup() (bool, error) { - return false, errors.New("unspported (*Container) expectPodCgroup") + return false, errors.New("unsupported (*Container) expectPodCgroup") } // Get cgroup path in a format suitable for the OCI spec func (c *Container) getOCICgroupPath() (string, error) { - return "", errors.New("unspported (*Container) getOCICgroupPath") + return "", errors.New("unsupported (*Container) getOCICgroupPath") } func getLocalhostHostEntry(c *Container) etchosts.HostEntries { |