sshConnection.setKeyPair(sshKeyPair);
File tempDirBase = new File("/tmp/");
// TODO: Verify the server key once we've learned it
IServerKeyVerifier serverKeyVerifier = new AcceptAllLearningServerKeyVerifier();
sshConnection.setServerKeyVerifier(serverKeyVerifier);
return new SshOpsTarget(tempDirBase, this, sshConnection);
}