diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2015-06-03T13·19+0200 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2015-06-03T13·19+0200 |
commit | f0f30f594c0e1ebe06c4ff26afef00a0b212f62a (patch) | |
tree | 8a4c6f5798c6966fcdbf6713b64045140f9dc788 /scripts | |
parent | 90aec21d76a2efae33d4b995ab772251a5778e1a (diff) |
Naming
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/build-remote.pl.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/build-remote.pl.in b/scripts/build-remote.pl.in index 447a9fd7569c..c9b4a502e23d 100755 --- a/scripts/build-remote.pl.in +++ b/scripts/build-remote.pl.in @@ -84,7 +84,7 @@ if (defined $conf && -e $conf) { push @machines, { hostName => $tokens[0] , systemTypes => [ split(/,/, $tokens[1]) ] - , sshKeys => $tokens[2] + , sshKey => $tokens[2] , maxJobs => int($tokens[3]) , speedFactor => 1.0 * (defined $tokens[4] ? int($tokens[4]) : 1) , supportedFeatures => [ @supportedFeatures, @mandatoryFeatures ] @@ -203,7 +203,7 @@ REQ: while (1) { # Connect to the selected machine. - my @sshOpts = ("-i", $machine->{sshKeys}); + my @sshOpts = ("-i", $machine->{sshKey}); $hostName = $machine->{hostName}; eval { ($from, $to) = connectToRemoteNix($hostName, \@sshOpts, "2>&4"); |