From a2b511408f49c043d0a557656e6bbb07d3b36066 Mon Sep 17 00:00:00 2001 From: Nathan Kinder Date: Mon, 6 Apr 2015 09:35:03 -0700 Subject: Suppress --config-profile option from installer script help output The --config-profile option for the ipsilon-server-install and ipsilon-client-install commands is designed to be used by the in-tree functional tests. It is not meant to be used by users, but we are advertising the option in the help output. This patch suppresses the option from the help output. Signed-off-by: Nathan Kinder --- ipsilon/install/ipsilon-client-install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ipsilon/install/ipsilon-client-install') diff --git a/ipsilon/install/ipsilon-client-install b/ipsilon/install/ipsilon-client-install index 02b4d5f..89e6c6c 100755 --- a/ipsilon/install/ipsilon-client-install +++ b/ipsilon/install/ipsilon-client-install @@ -356,7 +356,7 @@ def parse_args(): parser.add_argument('--debug', action='store_true', default=False, help="Turn on script debugging") parser.add_argument('--config-profile', default=None, - help="File containing install options") + help=argparse.SUPPRESS) parser.add_argument('--uninstall', action='store_true', help="Uninstall the server and all data") -- cgit