diff options
author | Daniel J Walsh <dwalsh@redhat.com> | 2020-10-16 04:56:27 -0400 |
---|---|---|
committer | Daniel J Walsh <dwalsh@redhat.com> | 2020-10-19 05:55:11 -0400 |
commit | 3d2ad0f97a35617f76f30d02bbfa8aa1a7c1f958 (patch) | |
tree | a202c1cba3f66ecd51f95d1be9bdf24febd06681 /test/e2e/common_test.go | |
parent | 7ffcab0854342844a44b2668bd9d98849bf935c8 (diff) | |
download | podman-3d2ad0f97a35617f76f30d02bbfa8aa1a7c1f958.tar.gz podman-3d2ad0f97a35617f76f30d02bbfa8aa1a7c1f958.tar.bz2 podman-3d2ad0f97a35617f76f30d02bbfa8aa1a7c1f958.zip |
--tls-verify and --authfile should work for all remote commands
These options are now fully supported in the remote API and should no
longer be hidden and/or documented as non supported.
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Diffstat (limited to 'test/e2e/common_test.go')
-rw-r--r-- | test/e2e/common_test.go | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/e2e/common_test.go b/test/e2e/common_test.go index e36c86690..1f9b65f16 100644 --- a/test/e2e/common_test.go +++ b/test/e2e/common_test.go @@ -673,3 +673,9 @@ func (p *PodmanTestIntegration) PodmanAsUser(args []string, uid, gid uint32, cwd podmanSession := p.PodmanAsUserBase(args, uid, gid, cwd, env, false, false, nil) return &PodmanSessionIntegration{podmanSession} } + +// We don't support running Varlink when local +func (p *PodmanTestIntegration) RestartRemoteService() { + p.StopRemoteService() + p.StartRemoteService() +} |