diff options
author | baude <bbaude@redhat.com> | 2019-06-04 18:06:24 -0500 |
---|---|---|
committer | baude <bbaude@redhat.com> | 2019-06-04 18:06:24 -0500 |
commit | 13a961a2cffde5de5d4e2b46865d45f464103f2b (patch) | |
tree | 99c5f6f4bceffc1e9e281c02358843a46c5467d7 /cmd | |
parent | 3fb9669a63558955766e7bd9152b8b542b00d9dd (diff) | |
download | podman-13a961a2cffde5de5d4e2b46865d45f464103f2b.tar.gz podman-13a961a2cffde5de5d4e2b46865d45f464103f2b.tar.bz2 podman-13a961a2cffde5de5d4e2b46865d45f464103f2b.zip |
remove -c for podman remote global options
it conflicts with commit
Signed-off-by: baude <bbaude@redhat.com>
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/podman/main_remote.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/podman/main_remote.go b/cmd/podman/main_remote.go index 1b8db44a7..de6c2c760 100644 --- a/cmd/podman/main_remote.go +++ b/cmd/podman/main_remote.go @@ -9,7 +9,7 @@ import ( const remote = true func init() { - rootCmd.PersistentFlags().StringVarP(&MainGlobalOpts.ConnectionName, "connection", "c", "", "remote connection name") + rootCmd.PersistentFlags().StringVar(&MainGlobalOpts.ConnectionName, "connection", "", "remote connection name") rootCmd.PersistentFlags().StringVar(&MainGlobalOpts.RemoteConfigFilePath, "remote-config-path", "", "alternate path for configuration file") rootCmd.PersistentFlags().StringVar(&MainGlobalOpts.RemoteUserName, "username", "", "username on the remote host") rootCmd.PersistentFlags().StringVar(&MainGlobalOpts.RemoteHost, "remote-host", "", "remote host") |