From 5556f36073fab29f8d379fe763326c736f5186da Mon Sep 17 00:00:00 2001 From: Gluuer Date: Tue, 31 May 2022 11:25:59 +0300 Subject: [PATCH] fix: jans-linux-setup multiple argument --import-ldif (#1476) --- jans-linux-setup/jans_setup/setup_app/utils/arg_parser.py | 1 - 1 file changed, 1 deletion(-) diff --git a/jans-linux-setup/jans_setup/setup_app/utils/arg_parser.py b/jans-linux-setup/jans_setup/setup_app/utils/arg_parser.py index 6c172cee0d7..eb214250e0e 100644 --- a/jans-linux-setup/jans_setup/setup_app/utils/arg_parser.py +++ b/jans-linux-setup/jans_setup/setup_app/utils/arg_parser.py @@ -63,7 +63,6 @@ parser.add_argument('-t', help="Load test data", action='store_true') parser.add_argument('-x', help="Load test data and exit", action='store_true') parser.add_argument('--allow-pre-released-features', help="Enable options to install experimental features, not yet officially supported", action='store_true') - parser.add_argument('--import-ldif', help="Render ldif templates from directory and import them in LDAP") parser.add_argument('--listen_all_interfaces', help="Allow the LDAP server to listen on all server interfaces", action='store_true') ldap_group = parser.add_mutually_exclusive_group()