Documentation ¶
Index ¶
- func NewRawSSHClient(ip, sshKeyPath, username string) (*ssh.Client, error)
- func NewSSHClient(d drivers.Driver) (*ssh.Client, error)
- func RunCommand(c *ssh.Client, cmd string) error
- func Transfer(reader io.Reader, readerLen int64, remotedir, filename string, perm string, ...) error
- func TransferFile(f assets.CopyableFile, client *ssh.Client) error
- type SSHSession
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewRawSSHClient ¶ added in v1.22.0
func NewSSHClient ¶
NewSSHClient returns an SSH client object for running commands.
func Transfer ¶
func Transfer(reader io.Reader, readerLen int64, remotedir, filename string, perm string, c *ssh.Client) error
Transfer uses an SSH session to copy a file to the remote machine.
func TransferFile ¶ added in v1.7.0
func TransferFile(f assets.CopyableFile, client *ssh.Client) error
Types ¶
type SSHSession ¶
type SSHSession interface { Close() error StdinPipe() (io.WriteCloser, error) Run(cmd string) error Wait() error }
SSHSession provides methods for running commands on a host.
Click to show internal directories.
Click to hide internal directories.