Support ProxyJump option when using ssh command (#1004)

* Add proxyjump func

* Run go mod tidy

* Run make fmt
This commit is contained in:
shopper
2020-06-17 12:15:12 +09:00
committed by GitHub
parent 4d8599e4fc
commit d9d5e612ff
3 changed files with 10 additions and 0 deletions

View File

@@ -57,6 +57,11 @@ func (c TOMLLoader) Load(pathToToml, keyPass string) error {
return xerrors.Errorf("%s is invalid. host is empty", serverName)
}
s.JumpServer = v.JumpServer
if len(s.JumpServer) == 0 {
s.JumpServer = d.JumpServer
}
switch {
case v.Port != "":
s.Port = v.Port