mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-10 00:08:07 +02:00
build-remote.pl: Indicate if remote machine is refusing builds
Fixes #120.
This commit is contained in:
parent
18a48d80a0
commit
72d8209548
1 changed files with 3 additions and 2 deletions
|
@ -197,10 +197,11 @@ REQ: while (1) {
|
|||
$hostName = $machine->{hostName};
|
||||
if (openSSHConnection($hostName)) {
|
||||
last REQ if system("ssh $hostName @sshOpts nix-builds-inhibited < /dev/null > /dev/null 2>&1") != 0;
|
||||
warn "machine `$hostName' is refusing builds, trying other available machines...\n";
|
||||
closeSSHConnection;
|
||||
} else {
|
||||
warn "unable to open SSH connection to `$hostName', trying other available machines...\n";
|
||||
}
|
||||
|
||||
warn "unable to open SSH connection to $hostName, trying other available machines...\n";
|
||||
$machine->{enabled} = 0;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue