summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNathan Kinder <nkinder@redhat.com>2015-04-06 09:35:03 -0700
committerNathan Kinder <nkinder@redhat.com>2015-04-06 11:35:44 -0700
commita2b511408f49c043d0a557656e6bbb07d3b36066 (patch)
tree44ee9690cd3628075af0c483c776f9f86bb52574
parent326f6e2e40eda22b3efc9ee2541ca0a8c9e392aa (diff)
downloadipsilon-ticket_37.tar.gz
ipsilon-ticket_37.tar.xz
ipsilon-ticket_37.zip
Suppress --config-profile option from installer script help outputticket_37
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 <nkinder@redhat.com>
-rwxr-xr-xipsilon/install/ipsilon-client-install2
-rwxr-xr-xipsilon/install/ipsilon-server-install2
2 files changed, 2 insertions, 2 deletions
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")
diff --git a/ipsilon/install/ipsilon-server-install b/ipsilon/install/ipsilon-server-install
index 56b0dd1..67877a6 100755
--- a/ipsilon/install/ipsilon-server-install
+++ b/ipsilon/install/ipsilon-server-install
@@ -318,7 +318,7 @@ def parse_args(plugins):
parser.add_argument('--secure', choices=['yes', 'no'], default='yes',
help="Turn on all security checks")
parser.add_argument('--config-profile', default=None,
- help="File containing install options")
+ help=argparse.SUPPRESS)
parser.add_argument('--server-debugging', action='store_true',
help="Enable debugging")
parser.add_argument('--uninstall', action='store_true',