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
e3215959
Commit
e3215959
authored
Nov 28, 2001
by
Robert Ricci
Browse files
Added a little more information to the 'multiple stacks' messages to aid
in debugging.
parent
0f168a59
Changes
1
Hide whitespace changes
Inline
Side-by-side
tbsetup/snmpit.in
View file @
e3215959
...
...
@@ -548,7 +548,8 @@ sub doVlansFromTables(@) {
my
$errors
=
0
;
if
(
@stacks
>
1
)
{
die
"
VLAN creation accross multiple stacks is not yet supported
\n
";
die
"
VLAN creation accross multiple stacks is not yet supported
\n
"
.
"
Stacks are
"
.
join
("
,
",
@stacks
)
.
"
\n
";
}
my
(
$stack
)
=
@stacks
;
...
...
@@ -609,7 +610,8 @@ sub doMakeVlan($@) {
my
$errors
=
0
;
if
(
@stacks
>
1
)
{
die
"
VLAN creation accross multiple stacks is not yet supported
\n
";
die
"
VLAN creation accross multiple stacks is not yet supported
\n
"
.
"
Stacks are
"
.
join
("
,
",
@stacks
)
.
"
\n
";
}
my
(
$stack
)
=
@stacks
;
...
...
@@ -682,7 +684,8 @@ sub doPortControl($@) {
my
@ports
=
@_
;
if
(
@stacks
>
1
)
{
die
"
Port control accross multiple stacks is not yet supported
\n
";
die
"
Port control accross multiple stacks is not yet supported
\n
"
.
"
Stacks are
"
.
join
("
,
",
@stacks
)
.
"
\n
";
}
my
(
$stack
)
=
@stacks
;
...
...
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