1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-07-06 21:41:48 +02:00

Remove obsolete SSH master connection code

This commit is contained in:
Eelco Dolstra 2014-07-24 16:19:17 +02:00
parent 03103c0a36
commit 7b351da680
2 changed files with 2 additions and 55 deletions

View file

@ -194,7 +194,7 @@ REQ: while (1) {
# Connect to the selected machine.
@sshOpts = ("-i", $machine->{sshKeys}, "-x");
my @sshOpts = ("-i", $machine->{sshKeys});
$hostName = $machine->{hostName};
eval {
($from, $to) = connectToRemoteNix($hostName, \@sshOpts, "2>&4");