summaryrefslogtreecommitdiff
path: root/cmd/podman
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2020-05-08 17:41:48 +0200
committerGitHub <noreply@github.com>2020-05-08 17:41:48 +0200
commit2547fe53127057ce8f3ba065b4263fea32be7f0d (patch)
treeee2a6e1a9d8dc186d49a825621e2ac9cd3e06544 /cmd/podman
parentfa7589b6a6a513b7449b59535221aaee809cb239 (diff)
parent5cbb0b8a665eb28b5b47212d35a6204d2be202fb (diff)
downloadpodman-2547fe53127057ce8f3ba065b4263fea32be7f0d.tar.gz
podman-2547fe53127057ce8f3ba065b4263fea32be7f0d.tar.bz2
podman-2547fe53127057ce8f3ba065b4263fea32be7f0d.zip
Merge pull request #6137 from rhatdan/VENDOR
Fix handling of overridden paths from database
Diffstat (limited to 'cmd/podman')
-rw-r--r--cmd/podman/login.go1
-rw-r--r--cmd/podman/logout.go1
2 files changed, 0 insertions, 2 deletions
diff --git a/cmd/podman/login.go b/cmd/podman/login.go
index 8413861f5..92f13d0e7 100644
--- a/cmd/podman/login.go
+++ b/cmd/podman/login.go
@@ -46,7 +46,6 @@ func init() {
// Podman flags.
flags.BoolVarP(&loginOptions.tlsVerify, "tls-verify", "", false, "Require HTTPS and verify certificates when contacting registries")
- flags.BoolVarP(&loginOptions.GetLoginSet, "get-login", "", false, "Return the current login user for the registry")
loginOptions.Stdin = os.Stdin
loginOptions.Stdout = os.Stdout
loginOptions.AcceptUnspecifiedRegistry = true
diff --git a/cmd/podman/logout.go b/cmd/podman/logout.go
index d0afc21b4..c016de8ae 100644
--- a/cmd/podman/logout.go
+++ b/cmd/podman/logout.go
@@ -37,7 +37,6 @@ func init() {
// Flags from the auth package.
flags.AddFlagSet(auth.GetLogoutFlags(&logoutOptions))
- logoutOptions.Stdin = os.Stdin
logoutOptions.Stdout = os.Stdout
logoutOptions.AcceptUnspecifiedRegistry = true
}