Skip to content

Commit

Permalink
Replace help text of "SSL" with "TLS/SSL"
Browse files Browse the repository at this point in the history
  • Loading branch information
stennie authored and p committed Feb 21, 2020
1 parent 6a5de9c commit 57bcfa0
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions mtools/mlaunch/mlaunch.py
Original file line number Diff line number Diff line change
Expand Up @@ -341,10 +341,10 @@ def is_file(arg):

ssl_args = init_parser.add_argument_group('TLS/SSL options')
ssl_args.add_argument('--sslCAFile',
help='Certificate Authority file for SSL',
help='Certificate Authority file for TLS/SSL',
type=is_file)
ssl_args.add_argument('--sslCRLFile',
help='Certificate Revocation List file for SSL',
help='Certificate Revocation List file for TLS/SSL',
type=is_file)
ssl_args.add_argument('--sslAllowInvalidHostnames',
action='store_true',
Expand All @@ -357,17 +357,17 @@ def is_file(arg):

ssl_server_args = init_parser.add_argument_group('Server TLS/SSL options')
ssl_server_args.add_argument('--sslOnNormalPorts', action='store_true',
help='use ssl on configured ports')
help='use TLS/SSL on configured ports')
ssl_server_args.add_argument('--sslMode',
help='set the SSL operation mode',
help='set the TLS/SSL operation mode',
choices=('disabled allowSSL preferSSL '
'requireSSL'.split()))
ssl_server_args.add_argument('--sslPEMKeyFile',
help='PEM file for ssl', type=is_file)
help='PEM file for TLS/SSL', type=is_file)
ssl_server_args.add_argument('--sslPEMKeyPassword',
help='PEM file password')
ssl_server_args.add_argument('--sslClusterFile',
help=('key file for internal SSL '
help=('key file for internal TLS/SSL '
'authentication'), type=is_file)
ssl_server_args.add_argument('--sslClusterPassword',
help=('internal authentication key '
Expand All @@ -389,10 +389,10 @@ def is_file(arg):

ssl_client_args = init_parser.add_argument_group('Client TLS/SSL options')
ssl_client_args.add_argument('--sslClientCertificate',
help='client certificate file for ssl',
help='client certificate file for TLS/SSL',
type=is_file)
ssl_client_args.add_argument('--sslClientPEMKeyFile',
help='client PEM file for ssl',
help='client PEM file for TLS/SSL',
type=is_file)
ssl_client_args.add_argument('--sslClientPEMKeyPassword',
help='client PEM file password')
Expand Down

0 comments on commit 57bcfa0

Please sign in to comment.