diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-08-09 16:05:57 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-09 16:05:57 +0200 |
commit | 2a190365f2db8c167c56fe5d8f1e267f0cc10dae (patch) | |
tree | b12537199fdf9e42f2cb138385b5fc1b1dc8b40a /libpod/define/errors.go | |
parent | 66ae8ec037f8e30d62bbb5f0213b7e35cafb4408 (diff) | |
parent | e2e41a7003dbb631dd3ba64f2d4ee46a9588d7a6 (diff) | |
download | podman-2a190365f2db8c167c56fe5d8f1e267f0cc10dae.tar.gz podman-2a190365f2db8c167c56fe5d8f1e267f0cc10dae.tar.bz2 podman-2a190365f2db8c167c56fe5d8f1e267f0cc10dae.zip |
Merge pull request #3766 from haircommander/probe-conmon
Add conmon probe to runtime construction
Diffstat (limited to 'libpod/define/errors.go')
-rw-r--r-- | libpod/define/errors.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libpod/define/errors.go b/libpod/define/errors.go index a4368a9aa..9d532263c 100644 --- a/libpod/define/errors.go +++ b/libpod/define/errors.go @@ -107,4 +107,8 @@ var ( // ErrOCIRuntimeNotFound indicates the OCI runtime attempted to invoke a command // that was not found ErrOCIRuntimeNotFound = errors.New("OCI runtime command not found error") + + // ErrConmonOutdated indicates the version of conmon found (whether via the configuration or $PATH) + // is out of date for the current podman version + ErrConmonOutdated = errors.New("outdated conmon version") ) |