diff options
author | Chris Evich <cevich@redhat.com> | 2019-06-25 15:06:15 -0400 |
---|---|---|
committer | Chris Evich <cevich@redhat.com> | 2019-06-26 12:44:22 -0400 |
commit | fc32439c298a107bd31f64fb7b6d396bce525e57 (patch) | |
tree | 364bb5640847277068a35bf3dd3123c02ad28f5f /test/e2e | |
parent | 21978c99088c04bcc847eb12f829876708c0b9e2 (diff) | |
download | podman-fc32439c298a107bd31f64fb7b6d396bce525e57.tar.gz podman-fc32439c298a107bd31f64fb7b6d396bce525e57.tar.bz2 podman-fc32439c298a107bd31f64fb7b6d396bce525e57.zip |
Remove refs to crio/conmon
Conmon has moved out of cri-o and into it's own dedicated repository.
This commit updates configuration and definitions which referenced
the old cri-o based paths.
Signed-off-by: Chris Evich <cevich@redhat.com>
Diffstat (limited to 'test/e2e')
-rw-r--r-- | test/e2e/common_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/e2e/common_test.go b/test/e2e/common_test.go index 8b6eab892..c3a37236b 100644 --- a/test/e2e/common_test.go +++ b/test/e2e/common_test.go @@ -195,7 +195,7 @@ func PodmanTestCreateUtil(tempDir string, remote bool) *PodmanTestIntegration { } } conmonBinary := filepath.Join("/usr/libexec/podman/conmon") - altConmonBinary := "/usr/libexec/crio/conmon" + altConmonBinary := "/usr/bin/conmon" if _, err := os.Stat(conmonBinary); os.IsNotExist(err) { conmonBinary = altConmonBinary } |