ssh fixes

This commit is contained in:
Juan Ferrer 2020-01-28 16:43:43 +01:00
parent 4fea7fa1dc
commit a4e48209b6
1 changed files with 1 additions and 1 deletions

View File

@ -74,7 +74,7 @@ async function updateProxy() {
await sshClient.connect(Object.assign({host}, conf.rproxy.auth));
await sshClient.putFiles([files]);
if (conf.rproxy.reloadCmd)
await ssh.exec(conf.rproxy.reloadCmd);
await sshClient.exec(conf.rproxy.reloadCmd);
await sshClient.dispose();
}