From 319fec2145544f09924a7d4d87041998b20819ba Mon Sep 17 00:00:00 2001 From: Jarrod Johnson <jjohnson2@lenovo.com> Date: Fri, 17 Aug 2018 11:16:11 -0400 Subject: [PATCH] Add advanced to nodeconfig --- confluent_client/bin/nodeconfig | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/confluent_client/bin/nodeconfig b/confluent_client/bin/nodeconfig index 07f6431f..e6f46e35 100755 --- a/confluent_client/bin/nodeconfig +++ b/confluent_client/bin/nodeconfig @@ -55,6 +55,11 @@ argparser.add_option('-x', '--exclude', dest='exclude', action='store_true', default=False, help='Treat positional arguments as items to not ' 'examine, compare, or restore default') +argparser.add_option('-a', '--advanced', dest='advanced', + action='store_true', default=False, + help='Include advanced settings, which are normally not ' + 'intended to be used without direction from the ' + 'relevant server vendor.') (options, args) = argparser.parse_args() cfgpaths = { @@ -209,7 +214,11 @@ else: if printsys or options.exclude: if printsys == 'all': printsys = [] - path = '/noderange/{0}/configuration/system/all'.format(noderange) + if printsys == [] and not options.advanced: + path = '/noderange/{0}/configuration/system/all'.format(noderange) + else: + path = '/noderange/{0}/configuration/system/advanced'.format( + noderange) rcode = client.print_attrib_path(path, session, printsys, options) sys.exit(rcode) \ No newline at end of file