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): casa install option --with-casa #5598

Merged
merged 2 commits into from Jul 21, 2023
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/admin/install/setup.md
Expand Up @@ -84,7 +84,7 @@ To check usage of this script run help command
[-couchbase-admin-user COUCHBASE_ADMIN_USER] [-couchbase-admin-password COUCHBASE_ADMIN_PASSWORD]
[-couchbase-bucket-prefix COUCHBASE_BUCKET_PREFIX] [-couchbase-hostname COUCHBASE_HOSTNAME] [--no-data]
[--no-jsauth] [-ldap-admin-password LDAP_ADMIN_PASSWORD] [--no-config-api] [--no-scim] [--no-fido2]
[--install-eleven] [--install-jans-link] [--install-casa] [--load-config-api-test]
[--install-eleven] [--install-jans-link] [--with-casa] [--load-config-api-test]
[-config-patch-creds CONFIG_PATCH_CREDS] [-spanner-project SPANNER_PROJECT] [-spanner-instance SPANNER_INSTANCE]
[-spanner-database SPANNER_DATABASE]
[-spanner-emulator-host SPANNER_EMULATOR_HOST | -google-application-credentials GOOGLE_APPLICATION_CREDENTIALS]
Expand Down Expand Up @@ -162,7 +162,7 @@ Below are the optional arguments:
| --no-fido2 | Do not install Fido2 Server |
| --install-eleven | Install Eleven Server |
| --install-jans-link | Install Link Server |
| --install-casa | Install Gluu/Flex Casa Server |
| --with-casa | Install Gluu/Flex Casa Server |
| --load-config-api-test | Load Config Api Test Data |
| --install-cache-refresh | Install Cache Refresh Server |
| -config-patch-creds CONFIG_PATCH_CREDS | password:username for downloading auto test ciba password |
Expand Down
2 changes: 1 addition & 1 deletion jans-linux-setup/jans_setup/setup_app/setup_options.py
Expand Up @@ -106,7 +106,7 @@ def get_setup_options():
if base.argsp.install_jans_link:
setupOptions['install_jans_link'] = True

if base.argsp.install_casa:
if base.argsp.with_casa:
setupOptions['install_casa'] = True

if base.argsp.jans_max_mem:
Expand Down
Expand Up @@ -92,7 +92,7 @@
parser.add_argument('--no-fido2', help="Do not install Fido2 Server", action='store_true')
parser.add_argument('--install-eleven', help="Install Eleven Server", action='store_true')
parser.add_argument('--install-jans-link', help="Install Link Server", action='store_true')
parser.add_argument('--install-casa', help="Install Gluu/Flex Casa Server", action='store_true')
parser.add_argument('--with-casa', help="Install Gluu/Flex Casa Server", action='store_true')

#parser.add_argument('--oxd-use-jans-storage', help="Use Jans Storage for Oxd Server", action='store_true')
parser.add_argument('--load-config-api-test', help="Load Config Api Test Data", action='store_true')
Expand Down