Skip to content
Snippets Groups Projects
Commit 55923990 authored by Leigh B. Stoller's avatar Leigh B. Stoller
Browse files

Minor bug fix to last revision.

parent bef556f1
No related branches found
No related tags found
No related merge requests found
......@@ -20,7 +20,6 @@ sub usage()
}
my $optlist = "at:s:";
my $timeout = 60 * 6;
my $state = TBDB_NODESTATE_PXEWAIT;
#
# Configure variables
......@@ -30,6 +29,7 @@ my $TB = "@prefix@";
# Locals
my @nodes = ();
my $failed = 0;
my $state;
#
# Load the Testbed support stuff.
......@@ -55,6 +55,9 @@ if (defined($options{"t"})) {
if (defined($options{"s"})) {
$state = $options{"s"};
}
else {
$state = TBDB_NODESTATE_PXEWAIT;
}
#
# All testnodes, or just some nodes.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment