Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
emulab
emulab-devel
Commits
fdb7bbac
Commit
fdb7bbac
authored
Jun 08, 2016
by
Leigh B Stoller
Browse files
Fix silly mistake in previous revision. Thanks Kirk!
parent
0e5b049e
Changes
1
Hide whitespace changes
Inline
Side-by-side
protogeni/lib/GeniAggregate.pm.in
View file @
fdb7bbac
...
...
@@ -2003,10 +2003,9 @@ sub WaitForNodes($$@)
my $adb_target;
$experiment->GetVirtNodeAttribute($node->vname(), "adb_target",
\$adb_target);
next if
(!$adb_target);
if (system("$TBADB -n $node_id forward") != 0) {
if ($adb_target &&
system("$TBADB -n $node_id forward")) {
print STDERR "Could not setup adb forwarding for $node_id!\n";
}
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment