diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2010-12-15T14·25+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2010-12-15T14·25+0000 |
commit | a0be433fec792216ac5d9af68ec1fea6c21c7c1d (patch) | |
tree | 50b8a6f5e57cdde4df0ffa599ee4bb246484954f /scripts/SSH.pm | |
parent | f1a6b97639474dbb13a1f96b4adf77c987a97d07 (diff) |
* Disable X11 forwarding, it's not needed.
Diffstat (limited to 'scripts/SSH.pm')
-rw-r--r-- | scripts/SSH.pm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/SSH.pm b/scripts/SSH.pm index 3b546ca522da..68f4a628b072 100644 --- a/scripts/SSH.pm +++ b/scripts/SSH.pm @@ -3,6 +3,8 @@ use File::Temp qw(tempdir); our @sshOpts = split ' ', ($ENV{"NIX_SSHOPTS"} or ""); +push @sshOpts, "-x"; + my $sshStarted = 0; my $sshHost; |