2
0
mirror of https://github.com/xcat2/xcat-core.git synced 2025-06-13 01:40:26 +00:00

Fix #3904 : Add ability to list discoverydata by type mtms

This commit is contained in:
Samveen Gulati
2017-09-15 00:06:32 +00:00
parent 87ecb70b8a
commit 5216f62d4b
2 changed files with 8 additions and 4 deletions

View File

@ -19,7 +19,7 @@ SYNOPSIS
********
\ **nodediscoverls**\ [\ **-t seq | profile | switch | blade | manual | undef | all**\ ] [\ **-l**\ ]
\ **nodediscoverls**\ [\ **-t seq | profile | switch | blade | manual | mtms | undef | all**\ ] [\ **-l**\ ]
\ **nodediscoverls**\ [\ **-u**\ \ *uuid*\ ] [\ **-l**\ ]
@ -47,7 +47,7 @@ OPTIONS
\ **-t seq|profile|switch|blade|manual|undef|all**\
\ **-t seq|profile|switch|blade|manual|mtms|undef|all**\
Display the nodes that have been discovered by the specified discovery method:
@ -72,6 +72,10 @@ OPTIONS
\* \ **mtms**\ - MTMS discovery (used when node mtm and serial fields are filled in).
\* \ **undef**\ - Display the nodes that were in the discovery pool, but for which xCAT has not yet received a discovery request.

View File

@ -808,7 +808,7 @@ sub nodediscoverls {
Usage:
nodediscoverls
nodediscoverls [-h|--help|-v|--version]
nodediscoverls [-t seq|profile|switch|blade|manual|undef|all] [-l]
nodediscoverls [-t seq|profile|switch|blade|manual|mtms|undef|all] [-l]
nodediscoverls [-u uuid] [-l]
";
$rsp = ();
@ -843,7 +843,7 @@ Usage:
# If the type is specified, display the corresponding type of nodes
my @SEQDiscover;
if ($type) {
if ($type !~ /^(seq|profile|switch|blade|manual|undef|all)$/) {
if ($type !~ /^(seq|profile|switch|blade|manual|mtms|undef|all)$/) {
$usage->($callback, "The discovery type \'$type\' is not supported.");
return;
}