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
b08c6b32
Commit
b08c6b32
authored
Mar 15, 2001
by
Leigh B. Stoller
Browse files
Mail the NS file in the email message. Good for tracking and for
fixing bugs.
parent
be08d6db
Changes
1
Hide whitespace changes
Inline
Side-by-side
tbsetup/tbdoit.in
View file @
b08c6b32
...
...
@@ -273,6 +273,16 @@ if (open(IN, "$logname")) {
}
close
(
IN
);
}
if
(
open
(
IN
,
"
$nsfile
"))
{
print
MAIL
"
\n\n
---------
\n\n
";
print
MAIL
"
Here is the NS file
\n\n
";
while
(
<
IN
>
)
{
print
MAIL
"
$_
";
}
close
(
IN
);
}
close
(
MAIL
);
unlink
("
$logname
");
...
...
@@ -322,6 +332,15 @@ sub fatal()
print
MAIL
$mesg
;
if
(
open
(
IN
,
"
$nsfile
"))
{
print
MAIL
"
\n\n
---------
\n\n
";
while
(
<
IN
>
)
{
print
MAIL
"
$_
";
}
close
(
IN
);
}
if
(
open
(
IN
,
"
$logname
"))
{
print
MAIL
"
\n\n
---------
\n\n
";
...
...
Write
Preview
Markdown
is supported
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