From e2e41a7003dbb631dd3ba64f2d4ee46a9588d7a6 Mon Sep 17 00:00:00 2001 From: Peter Hunt Date: Thu, 8 Aug 2019 16:37:55 -0400 Subject: Add conmon probe to runtime construction Now, when a user's conmon is out of date, podman will tell them Signed-off-by: Peter Hunt --- libpod/define/errors.go | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'libpod/define/errors.go') 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") ) -- cgit v1.2.3-54-g00ecf