aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbaude <bbaude@redhat.com>2018-01-03 12:39:35 -0600
committerAtomic Bot <atomic-devel@projectatomic.io>2018-01-03 20:10:15 +0000
commitc78d3769f13946f70fda1f642ce5a3907035fa21 (patch)
treea002ffdabf29dcdb532920a1a762bb3d281ee7ea
parent00d38cb37958f3c636aa5837b8f01dfad891a0b5 (diff)
downloadpodman-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
-rw-r--r--libkpod/config.go2
-rw-r--r--libpod/options.go7
2 files changed, 4 insertions, 5 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",
},
diff --git a/libpod/options.go b/libpod/options.go
index 70db3bdae..0ddbeae55 100644
--- a/libpod/options.go
+++ b/libpod/options.go
@@ -134,9 +134,10 @@ func WithConmonPath(path string) RuntimeOption {
if rt.valid {
return ErrRuntimeFinalized
}
-
- rt.config.ConmonPath = path
-
+ // TODO Once libkpod is eliminated, "" should throw an error
+ if path != "" {
+ rt.config.ConmonPath = path
+ }
return nil
}
}