summaryrefslogtreecommitdiff
path: root/scripts/cxmanage
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/cxmanage')
-rwxr-xr-xscripts/cxmanage7
1 files changed, 6 insertions, 1 deletions
diff --git a/scripts/cxmanage b/scripts/cxmanage
index 858c532..6649026 100755
--- a/scripts/cxmanage
+++ b/scripts/cxmanage
@@ -44,7 +44,7 @@ from cxmanage_api.cli.commands.mc import mcreset_command
from cxmanage_api.cli.commands.fw import fwupdate_command, fwinfo_command
from cxmanage_api.cli.commands.sensor import sensor_command
from cxmanage_api.cli.commands.fabric import ipinfo_command, macaddrs_command, \
- partition_config_command
+ partition_config_command, uplink_info_command
from cxmanage_api.cli.commands.config import config_reset_command, \
config_boot_command, config_pxe_command
from cxmanage_api.cli.commands.info import info_command
@@ -273,6 +273,11 @@ def build_parser():
help='get partition config')
partition_config.set_defaults(func=partition_config_command)
+ # uplink_info command
+ uplink_info = subparsers.add_parser('uplink_info',
+ help='get uplink info')
+ uplink_info.set_defaults(func=uplink_info_command)
+
# config command
config = subparsers.add_parser('config', help='configure hosts')
config_subs = config.add_subparsers()