Skip to content

Commit

Permalink
fix(jans-linux-setup): casa install option --with-casa (#5598)
Browse files Browse the repository at this point in the history
* fix(jans-linux-setup): casa install opiton --with-casa

* fix(jans-linux-setup): casa install opiton --with-casa
  • Loading branch information
devrimyatar committed Jul 21, 2023
1 parent a4b7ae7 commit 4758bf5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
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
2 changes: 1 addition & 1 deletion jans-linux-setup/jans_setup/setup_app/utils/arg_parser.py
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

0 comments on commit 4758bf5

Please sign in to comment.