# Functions
Close closes a Closeable.
Create SSH agent, start it in background and returns control back to the main thread You should stop the agent to cleanup files afterwards by calling `defer s.Stop()`.
NoOpHostKeyCallback is an ssh.HostKeyCallback that does nothing.
RunCommandAndGetOutput will run the given command on the host over SSH and return the combined (stdout + stderr) output.
RunCommandAndGetStdout will run the given command on the host over SSH and return the stdout of the underlying command.
Instantiates and returns an in-memory ssh agent with the given private key already added You should stop the agent to cleanup files afterwards by calling `defer sshAgent.Stop()`.
Instantiates and returns an in-memory ssh agent with the given private key(s) already added You should stop the agent to cleanup files afterwards by calling `defer sshAgent.Stop()`.
# Interfaces
Closeable can be closed.