diff options
author | baude <bbaude@redhat.com> | 2018-01-03 12:39:35 -0600 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2018-01-03 20:10:15 +0000 |
commit | c78d3769f13946f70fda1f642ce5a3907035fa21 (patch) | |
tree | a002ffdabf29dcdb532920a1a762bb3d281ee7ea /libkpod | |
parent | 00d38cb37958f3c636aa5837b8f01dfad891a0b5 (diff) | |
download | podman-c78d3769f13946f70fda1f642ce5a3907035fa21.tar.gz podman-c78d3769f13946f70fda1f642ce5a3907035fa21.tar.bz2 podman-c78d3769f13946f70fda1f642ce5a3907035fa21.zip |
Remove kpod handling of conmon
We don't want libkpod overrides for conmon's path to misdirect
the already set path for conmon from libpod.
Signed-off-by: baude <bbaude@redhat.com>
Closes: #181
Approved by: baude
Diffstat (limited to 'libkpod')
-rw-r--r-- | libkpod/config.go | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libkpod/config.go b/libkpod/config.go index 15da7e482..9713e4bd7 100644 --- a/libkpod/config.go +++ b/libkpod/config.go @@ -12,7 +12,6 @@ import ( const ( crioRoot = "/var/lib/containers/storage" crioRunRoot = "/var/run/containers/storage" - conmonPath = "/usr/local/libexec/crio/conmon" pauseImage = "kubernetes/pause" pauseCommand = "/pause" defaultTransport = "docker://" @@ -278,7 +277,6 @@ func DefaultConfig() *Config { RuntimeUntrustedWorkload: "", DefaultWorkloadTrust: "trusted", - Conmon: conmonPath, ConmonEnv: []string{ "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", }, |