summaryrefslogtreecommitdiff
path: root/libpod
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2020-10-29 22:21:17 +0100
committerGitHub <noreply@github.com>2020-10-29 22:21:17 +0100
commit228396a99dc88fc828f23d4072a46ca8de90282f (patch)
treea77a837e89e0a267d01e53ddd4f0fd580941eab9 /libpod
parent1ce5ece66f567d3a3e52f9a9b5945222eda2d6a2 (diff)
parent0f191ad72c406cfe8223946c069f6ec70f559664 (diff)
downloadpodman-228396a99dc88fc828f23d4072a46ca8de90282f.tar.gz
podman-228396a99dc88fc828f23d4072a46ca8de90282f.tar.bz2
podman-228396a99dc88fc828f23d4072a46ca8de90282f.zip
Merge pull request #8174 from rhatdan/errors
Podman often reports OCI Runtime does not exist, even if it does
Diffstat (limited to 'libpod')
-rw-r--r--libpod/define/errors.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/libpod/define/errors.go b/libpod/define/errors.go
index 300e0d7ca..1b21cd1ce 100644
--- a/libpod/define/errors.go
+++ b/libpod/define/errors.go
@@ -141,15 +141,15 @@ var (
// ErrOCIRuntimePermissionDenied indicates the OCI runtime attempted to invoke a command that returned
// a permission denied error
- ErrOCIRuntimePermissionDenied = errors.New("OCI runtime permission denied error")
+ ErrOCIRuntimePermissionDenied = errors.New("OCI permission denied")
// ErrOCIRuntimeNotFound indicates the OCI runtime attempted to invoke a command
// that was not found
- ErrOCIRuntimeNotFound = errors.New("OCI runtime command not found error")
+ ErrOCIRuntimeNotFound = errors.New("OCI not found")
// ErrOCIRuntimeUnavailable indicates that the OCI runtime associated to a container
// could not be found in the configuration
- ErrOCIRuntimeUnavailable = errors.New("OCI runtime not available in the current configuration")
+ ErrOCIRuntimeUnavailable = errors.New("OCI unavailable")
// ErrConmonOutdated indicates the version of conmon found (whether via the configuration or $PATH)
// is out of date for the current podman version