Skip to content
GitLab
Menu
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
c5a431f4
Commit
c5a431f4
authored
Dec 15, 2014
by
Leigh B Stoller
Browse files
Minor change to order of print statements in output.
parent
da01837d
Changes
1
Hide whitespace changes
Inline
Side-by-side
apt/create_instance.in
View file @
c5a431f4
...
...
@@ -715,19 +715,15 @@ while ($seconds > 0) {
last
;
}
}
print
STDERR
"
$slice_urn
\n
";
print
STDERR
"
$public_url
\n
"
if
(
defined
(
$public_url
));
print
STDERR
"
\n
";
print
STDERR
"
$manifest
\n\n
";
# Print this message first so its obvious.
if
(
$failed
||
!
$ready
)
{
$instance
->
SetStatus
("
failed
");
if
(
!
$ready
)
{
print
STDERR
"
$slice_urn
timed out.
\n
";
print
STDERR
"
***
$slice_urn
timed out.
\n
\n
";
}
else
{
print
STDERR
"
$slice_urn
failed.
\n
";
print
STDERR
"
***
$slice_urn
failed.
\n
\n
";
}
$webtask
->
Exited
(
1
)
if
(
defined
(
$webtask
));
}
...
...
@@ -735,6 +731,14 @@ else {
$instance
->
SetStatus
("
ready
");
$webtask
->
Exited
(
0
)
if
(
defined
(
$webtask
));
}
print
STDERR
"
$slice_urn
\n
";
if
(
defined
(
$public_url
))
{
print
STDERR
"
$public_url
\n
";
$instance
->
SetPublicURL
(
$public_url
);
}
print
STDERR
"
\n
";
print
STDERR
"
$manifest
\n\n
";
$slice
->
UnLock
();
exit
(
0
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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