diff options
author | Ed Santiago <santiago@redhat.com> | 2021-12-01 11:44:02 -0700 |
---|---|---|
committer | Ed Santiago <santiago@redhat.com> | 2021-12-01 14:06:22 -0700 |
commit | 5ac66e2aab68de1d40a01c6f9d00956a45ccaa4d (patch) | |
tree | 07d0f25e82b2a4ca44b825e90b860b2c2405394a /test/e2e/libpod_suite_remote_test.go | |
parent | 078e633294b07027c9f531ac1e849bb5b3d779f8 (diff) | |
download | podman-5ac66e2aab68de1d40a01c6f9d00956a45ccaa4d.tar.gz podman-5ac66e2aab68de1d40a01c6f9d00956a45ccaa4d.tar.bz2 podman-5ac66e2aab68de1d40a01c6f9d00956a45ccaa4d.zip |
Rename CrioRoot as just Root
...and remove other uses of "crio". They're confusing
and misleading. (I'm sure it made sense at one time)
Signed-off-by: Ed Santiago <santiago@redhat.com>
Diffstat (limited to 'test/e2e/libpod_suite_remote_test.go')
-rw-r--r-- | test/e2e/libpod_suite_remote_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/e2e/libpod_suite_remote_test.go b/test/e2e/libpod_suite_remote_test.go index 2ecbd0eab..58ffe8c75 100644 --- a/test/e2e/libpod_suite_remote_test.go +++ b/test/e2e/libpod_suite_remote_test.go @@ -148,7 +148,7 @@ func (p *PodmanTestIntegration) StopRemoteService() { //MakeOptions assembles all the podman main options func getRemoteOptions(p *PodmanTestIntegration, args []string) []string { podmanOptions := strings.Split(fmt.Sprintf("--root %s --runroot %s --runtime %s --conmon %s --cni-config-dir %s --cgroup-manager %s", - p.CrioRoot, p.RunRoot, p.OCIRuntime, p.ConmonBinary, p.CNIConfigDir, p.CgroupManager), " ") + p.Root, p.RunRoot, p.OCIRuntime, p.ConmonBinary, p.CNIConfigDir, p.CgroupManager), " ") if os.Getenv("HOOK_OPTION") != "" { podmanOptions = append(podmanOptions, os.Getenv("HOOK_OPTION")) } |