From d5216d1e4130ecc068a25b39e1a4bb32e0b4dd1f Mon Sep 17 00:00:00 2001 From: Mustafa Baser Date: Sun, 11 Feb 2024 11:39:14 +0300 Subject: [PATCH] fix(jans-linux-setup): remove server word from casa in installer prompt Signed-off-by: Mustafa Baser --- jans-linux-setup/jans_setup/setup_app/installers/jans.py | 2 +- jans-linux-setup/jans_setup/setup_app/utils/arg_parser.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/jans-linux-setup/jans_setup/setup_app/installers/jans.py b/jans-linux-setup/jans_setup/setup_app/installers/jans.py index 2b8a7302d55..ba99a194cf0 100644 --- a/jans-linux-setup/jans_setup/setup_app/installers/jans.py +++ b/jans-linux-setup/jans_setup/setup_app/installers/jans.py @@ -82,7 +82,7 @@ def get_install_string(prefix, install_var): ('Install Scim Server', 'install_scim_server'), ('Install Jans Link Server', 'install_jans_link'), ('Install Jans KC Link Server', 'install_jans_keycloak_link'), - ('Install Jans Casa Server', 'install_casa'), + ('Install Jans Casa', 'install_casa'), ('Install Jans Lock', 'install_jans_lock'), ('Install Jans KC', 'install_jans_saml')): txt += get_install_string(prompt_str, install_var) 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 f55c63c5383..e52f1b2aaa3 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 @@ -100,7 +100,7 @@ parser.add_argument('--no-link', help="Do not install Jans Link Server", action='store_true') parser.add_argument('--install-jans-keycloak-link', help="Install Keycloak Link Server", action='store_true') - parser.add_argument('--with-casa', help="Install Jans Casa Server", action='store_true') + parser.add_argument('--with-casa', help="Install Jans Casa", action='store_true') parser.add_argument('--install-jans-saml', help="Install Jans KC", action='store_true') parser.add_argument('--install-jans-lock', help="Install Jans Lock", action='store_true') parser.add_argument('--install-opa', help="Install OPA", action='store_true')