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
e5a8d11a
Commit
e5a8d11a
authored
Sep 26, 2016
by
Leigh B Stoller
Browse files
Do not send email when we kill a runaway medusa, this is clearly a
crappy program that goes into loops quite readily.
parent
373d0547
Changes
1
Hide whitespace changes
Inline
Side-by-side
security/runmedusa.in
View file @
e5a8d11a
...
...
@@ -204,7 +204,8 @@ sub RunMedusa($$)
}
if
(
$?
)
{
if
(
$?
==
15
)
{
fatal
("
$MEDUSA
runaway was just killed!
");
print
STDERR
"
$MEDUSA
runaway was just killed!
\n
";
exit
(
-
1
);
}
else
{
fatal
("
$MEDUSA
exited with status $?
");
...
...
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