diff options
author | Jhon Honce <jhonce@redhat.com> | 2020-03-23 10:27:32 -0700 |
---|---|---|
committer | Jhon Honce <jhonce@redhat.com> | 2020-03-24 11:03:13 -0700 |
commit | 77a2af8817284d134ea1f30f0b06291a5b05c5a0 (patch) | |
tree | f6ed82f9c435c30b44d5c820502607ba60e89282 /cmd/podmanV2/registry/remote.go | |
parent | c29a4c69044c02eee564fc72c64144b2a76d1d73 (diff) | |
download | podman-77a2af8817284d134ea1f30f0b06291a5b05c5a0.tar.gz podman-77a2af8817284d134ea1f30f0b06291a5b05c5a0.tar.bz2 podman-77a2af8817284d134ea1f30f0b06291a5b05c5a0.zip |
Combine GlobalFlags and EngineFlags into EngineOptions
* EngineOptions obtained in command via
`opt, err := registry.Options(cmd)`
Signed-off-by: Jhon Honce <jhonce@redhat.com>
Diffstat (limited to 'cmd/podmanV2/registry/remote.go')
-rw-r--r-- | cmd/podmanV2/registry/remote.go | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/cmd/podmanV2/registry/remote.go b/cmd/podmanV2/registry/remote.go new file mode 100644 index 000000000..32a231ac4 --- /dev/null +++ b/cmd/podmanV2/registry/remote.go @@ -0,0 +1,9 @@ +package registry + +import ( + "github.com/containers/libpod/pkg/domain/entities" +) + +func IsRemote() bool { + return EngineOptions.EngineMode == entities.TunnelMode +} |