summaryrefslogtreecommitdiff
path: root/cmd/podmanV2/root.go
diff options
context:
space:
mode:
authorJhon Honce <jhonce@redhat.com>2020-03-23 10:27:32 -0700
committerJhon Honce <jhonce@redhat.com>2020-03-24 11:03:13 -0700
commit77a2af8817284d134ea1f30f0b06291a5b05c5a0 (patch)
treef6ed82f9c435c30b44d5c820502607ba60e89282 /cmd/podmanV2/root.go
parentc29a4c69044c02eee564fc72c64144b2a76d1d73 (diff)
downloadpodman-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/root.go')
-rw-r--r--cmd/podmanV2/root.go7
1 files changed, 4 insertions, 3 deletions
diff --git a/cmd/podmanV2/root.go b/cmd/podmanV2/root.go
index 2becd126d..68e8b4531 100644
--- a/cmd/podmanV2/root.go
+++ b/cmd/podmanV2/root.go
@@ -26,12 +26,13 @@ func init() {
var dummyVersion bool
// TODO had to disable shorthand -v for version due to -v rm with volume
rootCmd.PersistentFlags().BoolVar(&dummyVersion, "version", false, "Version of Podman")
- rootCmd.PersistentFlags().StringVarP(&registry.EngineOpts.Uri, "remote", "r", "", "URL to access Podman service")
- rootCmd.PersistentFlags().StringSliceVar(&registry.EngineOpts.Identities, "identity", []string{}, "path to SSH identity file")
+ rootCmd.PersistentFlags().StringVarP(&registry.EngineOptions.Uri, "remote", "r", "", "URL to access Podman service")
+ rootCmd.PersistentFlags().StringSliceVar(&registry.EngineOptions.Identities, "identity", []string{}, "path to SSH identity file")
}
func Execute() {
- if err := rootCmd.Execute(); err != nil {
+ o := registry.NewOptions(rootCmd.Context(), &registry.EngineOptions)
+ if err := rootCmd.ExecuteContext(o); err != nil {
fmt.Fprintln(os.Stderr, "Error:", err.Error())
} else if registry.GetExitCode() == define.ExecErrorCodeGeneric {
// The exitCode modified from define.ExecErrorCodeGeneric,