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

feat: include eduPerson in gluuPerson table on IDP installation #858 #861

Open
wants to merge 25 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
884fe47
feat: include eduPerson in gluuPerson table on IDP installation (ref:…
devrimyatar Apr 22, 2022
09b707d
fix: rdbm eduPerson issue while loading test data
devrimyatar Apr 22, 2022
dee215f
fix: post-setup start services
devrimyatar Apr 27, 2022
13bf591
fix: oxRegistrationConfiguration shoould has TEXT type
yurem Apr 28, 2022
f8a4a00
feat: war_to_jetty10.py
devrimyatar Apr 28, 2022
f50ba22
Merge branch 'version_4.4.0' of https://github.com/GluuFederation/com…
devrimyatar Apr 28, 2022
5ba08d0
fix: Security Hotspots
devrimyatar Apr 28, 2022
4ee9adc
fix: rename script
devrimyatar Apr 28, 2022
56c70b0
fix: fix DB InumMap attribute types
yurem Apr 29, 2022
4f0d888
fix: jetty-10 converter script
devrimyatar Apr 29, 2022
d705ed1
Merge branch 'version_4.4.0' of https://github.com/GluuFederation/com…
devrimyatar Apr 29, 2022
05e7b7a
fix: post setup
devrimyatar May 3, 2022
7bfc953
fix: test data loader
devrimyatar May 3, 2022
5dcdf96
fix: personObjectClassTypes and personObjectClassDisplayNames should …
devrimyatar May 3, 2022
d142017
feat: options -ox-trust-authentication-mode -ox-authentication-mode -…
devrimyatar May 26, 2022
3dbade9
feat: set auth mode and enable scripts by setup.properties
devrimyatar May 27, 2022
8deb214
feat: generate scanAKeystore.pcks12
devrimyatar Jun 3, 2022
4d9931a
fix: gcs path
devrimyatar Jun 15, 2022
0454410
fix: oxd for cluster
devrimyatar Jun 15, 2022
9c6f3db
fix: opendj to mysql migration tool
devrimyatar Jul 26, 2022
90b02ee
fix: oxd keystorepath from config in export/import cert
devrimyatar Sep 7, 2022
03a4c6e
fix: replace ip by ox.gluu.org
devrimyatar Mar 11, 2023
e6b8a5e
feat: gluu maven user/password for online installer
devrimyatar May 31, 2023
aafc8e4
fix: don't download oxd-server in setup
devrimyatar Aug 24, 2023
1f66981
fix: oxd setup
devrimyatar Aug 24, 2023
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
Prev Previous commit
Next Next commit
feat: set auth mode and enable scripts by setup.properties
devrimyatar committed May 27, 2022
commit 3dbade98259e357a4b71077fad140ef7dd97a87a
6 changes: 6 additions & 0 deletions setup_app/utils/properties_utils.py
Original file line number Diff line number Diff line change
@@ -201,6 +201,12 @@ def load_properties(self, prop_file, no_update=[]):
if p.get('ldap_install') == '0':
p['ldap_install'] = InstallTypes.NONE

if p.get('enable-script'):
base.argsp.enable_script = p['enable-script'].split()

base.argsp.ox_authentication_mode = p.get('ox-authentication-mode')
base.argsp.ox_trust_authentication_mode = p.get('ox-trust-authentication-mode')

properties_list = list(p.keys())

if 'oxtrust_admin_password' not in p: