Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
emulab-devel
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
143
Issues
143
List
Boards
Labels
Service Desk
Milestones
Merge Requests
6
Merge Requests
6
Operations
Operations
Incidents
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
emulab
emulab-devel
Commits
f94e8562
Commit
f94e8562
authored
Nov 09, 2010
by
Leigh B Stoller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Kill the xml (-x) output option; no longer needed/used.
parent
988b76bf
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
9 deletions
+1
-9
tbsetup/vtopgen.in
tbsetup/vtopgen.in
+1
-9
No files found.
tbsetup/vtopgen.in
View file @
f94e8562
#!/usr/bin/perl -w
#
# EMULAB-COPYRIGHT
# Copyright (c) 2009 University of Utah and the Flux Group.
# Copyright (c) 2009
-2010
University of Utah and the Flux Group.
# All rights reserved.
#
use
English
;
...
...
@@ -13,7 +13,6 @@ sub usage ()
print
STDERR
"
-p - pre-assign mode, as from tbprerun
\n
";
print
STDERR
"
-v - Enables verbose output
\n
";
print
STDERR
"
-u - Enables update mode
\n
";
print
STDERR
"
-x - XML output
\n
";
print
STDERR
"
-o - Send output to file instead of stdout
\n
";
print
STDERR
"
-f - Fix current resources during update mode
\n
";
exit
(
1
);
...
...
@@ -24,7 +23,6 @@ my $fixmode = 0;
my
$updating
=
0
;
my
$warnings
=
0
;
my
$preassign
=
0
;
my
$xml
=
0
;
my
$rspec
=
0
;
my
$output
=
*STDOUT
;
my
$retval
=
0
;
...
...
@@ -76,9 +74,6 @@ if (defined($options{"u"})) {
if
(
defined
(
$options
{"
f
"}))
{
$fixmode
=
1
;
}
if
(
defined
(
$options
{"
x
"}))
{
$xml
=
1
;
}
if
(
defined
(
$options
{"
r
"}))
{
$rspec
=
1
;
}
...
...
@@ -135,9 +130,6 @@ if ($preassign) {
if
(
$rspec
&&
defined
(
$vtop
->
rspec
()))
{
$retval
=
$vtop
->
PrintRspec
(
$output
);
}
elsif
(
$xml
)
{
$retval
=
$vtop
->
PrintXML
(
$output
);
}
else
{
$retval
=
$vtop
->
PrintTop
(
$output
);
}
...
...
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