Versions in this module Expand all Collapse all v0 v0.0.1 Apr 12, 2016 Changes in this version + type SSHAuth struct + Username string + func NewSSHAuth(username, password string) SSHAuth + type SSHKey struct + KeyFilename string + PathToFile string + func NewSSHKey(pathToKeyFile, keyFilename string) SSHKey + type TargetHost struct + Host string + Port string + func NewTargetHost(hostname, port string) TargetHost + type Transporter struct + Client *ssh.Client + SSHAuth SSHAuth + SSHKey SSHKey + TargetHost TargetHost + WithSSHAgent bool + func NewTransporter(sshKey SSHKey, auth SSHAuth, targetHost TargetHost, withSSHAgent, debug bool) *Transporter + func (t *Transporter) Connect() error + func (t *Transporter) RetrieveResultFiles(remoteResultsPath, localResultsPath string, removeFiles bool) error