start tests

This commit is contained in:
2016-06-01 02:31:29 +02:00
parent 1b30aa428e
commit 39abfd760b
16 changed files with 116 additions and 71 deletions

View File

@@ -12,6 +12,7 @@ export class SshInstance {
private sshKeys:SshKey[]; //holds all ssh keys
private sshSync:boolean; // if set to true, the ssh dir will be kept in sync automatically
constructor(optionsArg:{sshDir?:string,sshSync?:boolean}={}){
optionsArg ? void(0) : optionsArg = {};
this.sshDir = new SshDir(optionsArg.sshDir);
this.sshKeys = this.sshDir.getKeys();
this.sshSync = optionsArg.sshSync;