Add port to sshOptions

This commit is contained in:
Anton Medvedev 2017-04-10 21:04:42 +07:00
parent 210b899928
commit 280506bd66

View File

@ -41,6 +41,10 @@ class Host
{
$options = '';
if ($this->port) {
$options .= " -p {$this->port}";
}
if ($this->configFile) {
$options .= " -F {$this->configFile}";
}