diff --git a/src/ConfigEnvironment.php b/src/ConfigEnvironment.php index e8a1771..cae172f 100644 --- a/src/ConfigEnvironment.php +++ b/src/ConfigEnvironment.php @@ -125,7 +125,10 @@ public function buildServerString() return $host; } - $options = '-qA'; // Same as '-q -A' + // Default options: + // [-A] Forward ssh agent + // [-o LogLevel=error] Suppress ssh banner + $options = '-A -o LogLevel=error'; if ($this->get('ssh_options')) { $options .= ' '. trim($this->get('ssh_options'));