diff options
author | Ashley Cui <ashleycui16@gmail.com> | 2019-06-11 10:01:10 -0400 |
---|---|---|
committer | Ashley Cui <ashleycui16@gmail.com> | 2019-06-11 10:09:37 -0400 |
commit | 91ce129eab96e1538bfe415c9c535a69b0e88890 (patch) | |
tree | 381933fc6d33798d9ffc24eba5b78c505e7b599c | |
parent | c93b8d6b02c7ec0c91af34481133001421b9628d (diff) | |
download | podman-91ce129eab96e1538bfe415c9c535a69b0e88890.tar.gz podman-91ce129eab96e1538bfe415c9c535a69b0e88890.tar.bz2 podman-91ce129eab96e1538bfe415c9c535a69b0e88890.zip |
Fix podman-remote to user default username
Currently, you have to specify the username every time, rather than default like SSH does.
Signed-off-by: Ashley Cui <ashleycui16@gmail.com>
-rw-r--r-- | cmd/podman/main_remote.go | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/cmd/podman/main_remote.go b/cmd/podman/main_remote.go index de6c2c760..1b9430e92 100644 --- a/cmd/podman/main_remote.go +++ b/cmd/podman/main_remote.go @@ -3,15 +3,21 @@ package main import ( + "os/user" + "github.com/spf13/cobra" ) const remote = true func init() { + var username string + if curruser, err := user.Current(); err == nil { + username = curruser.Username + } 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.RemoteUserName, "username", username, "username on the remote host") rootCmd.PersistentFlags().StringVar(&MainGlobalOpts.RemoteHost, "remote-host", "", "remote host") // TODO maybe we allow the altering of this for bridge connections? //rootCmd.PersistentFlags().StringVar(&MainGlobalOpts.VarlinkAddress, "varlink-address", adapter.DefaultAddress, "address of the varlink socket") |