From b2c42a0993d2129c910036d4054ec25129d09f18 Mon Sep 17 00:00:00 2001 From: Brent Baude Date: Wed, 3 Jun 2020 13:36:39 -0500 Subject: wip Signed-off-by: Brent Baude --- cmd/podman/system/connection.go | 54 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 cmd/podman/system/connection.go (limited to 'cmd') diff --git a/cmd/podman/system/connection.go b/cmd/podman/system/connection.go new file mode 100644 index 000000000..3af905fad --- /dev/null +++ b/cmd/podman/system/connection.go @@ -0,0 +1,54 @@ +// +build !remote + +package system + +import ( + "github.com/containers/libpod/cmd/podman/registry" + "github.com/containers/libpod/pkg/domain/entities" + "github.com/spf13/cobra" +) + +var ( + connectionDescription = `TBD +` + connectionCommand = &cobra.Command{ + Use: "connection", + //Args: validate.NoArgs, + Long: connectionDescription, + Short: "Add remote ssh connection", + RunE: connection, + Example: `podman system connection server.foobar.com +podman system connection --identity ~/.ssh/dev_rsa --default root@server.foobar.com:222`, + } +) + +var connectionOptions = struct { + Alias string + Default bool + Identity string + SocketPath string + User string +}{} + +func init() { + registry.Commands = append(registry.Commands, registry.CliCommand{ + Mode: []entities.EngineMode{entities.ABIMode}, + Command: connectionCommand, + Parent: systemCmd, + }) + flags := connectionCommand.Flags() + flags.StringVar(&connectionOptions.Alias, "alias", "", "alias name for connection") + flags.BoolVar(&connectionOptions.Default, "default", false, "set as the default connection") + flags.StringVar(&connectionOptions.Identity, "identity", "", "path to ssh identity file") + //flags.StringVar(&connectionOptions.User, "user", "", "remote username") + flags.StringVar(&connectionOptions.SocketPath, "socket-path", "", "path to podman socket on remote host") +} + +func connection(cmd *cobra.Command, args []string) error { + // if no user is provided, assume local user name + // if no socket is provided, then do an ssh to look for it + // default connection, if exists, is then assumed with podman remote + // if no identity exists, should we be prompting for password? + + return nil +} -- cgit v1.2.3-54-g00ecf