Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(jans-linux-setup): remove server word from casa in installer prompt #7690

Merged
merged 1 commit into from
Feb 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion jans-linux-setup/jans_setup/setup_app/installers/jans.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand Down