Skip to content

Commit

Permalink
Update component versions and dev config for icat.server 6.1+
Browse files Browse the repository at this point in the history
  • Loading branch information
ajkyffin committed Oct 30, 2024
1 parent dd63ec2 commit 1f20bd9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion roles/dev_common/templates/settings.xml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
<properties>
<serverUrl>{{ icat_url }}</serverUrl>
{% if lucene_url is defined and lucene_url %}
<luceneUrl>{{ lucene_url }}</luceneUrl>
<searchEngine>LUCENE</searchEngine>
<searchUrls>{{ lucene_url }}</searchUrls>
{% endif %}
<javax.net.ssl.trustStore>{{ payara_domain_dir }}/config/cacerts.jks</javax.net.ssl.trustStore>
<containerHome>{{ payara_dir }}</containerHome>
Expand Down
2 changes: 1 addition & 1 deletion roles/icat_lucene/defaults/main.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
---

icat_lucene_version: '2.0.2'
icat_lucene_version: '3.0.0-SNAPSHOT'
icat_lucene_data_dir: 'data/lucene'
2 changes: 1 addition & 1 deletion roles/icat_server/defaults/main.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---

icat_server_version: '6.0.1'
icat_server_version: '6.1.0-SNAPSHOT'
icat_server_rootUserNames: "{% if ansible_local.local.instantiations.authn_simple is defined and ansible_local.local.instantiations.authn_simple == 'true' %}simple/root {% endif %}{% if ansible_local.local.instantiations.authn_db is defined and ansible_local.local.instantiations.authn_db == 'true' %}db/root {% endif %}"
icat_server_maxEntities: "10000"
icat_server_authn_list: "{% if ansible_local.local.instantiations.authn_simple is defined and ansible_local.local.instantiations.authn_simple == 'true' %}simple {% endif %}{% if ansible_local.local.instantiations.authn_db is defined and ansible_local.local.instantiations.authn_db == 'true' %}db {% endif %}{% if ansible_local.local.instantiations.authn_anon is defined and ansible_local.local.instantiations.authn_anon == 'true' %}anon {% endif %}{% if ansible_local.local.instantiations.authn_ldap is defined and ansible_local.local.instantiations.authn_ldap == 'true' %}ldap {% endif %}{% if ansible_local.local.instantiations.authn_ip_clf is defined and ansible_local.local.instantiations.authn_ip_clf == 'true' %}ip_clf {% endif %}{% if ansible_local.local.instantiations.authn_uows_clf is defined and ansible_local.local.instantiations.authn_uows_clf == 'true' %}uows_clf {% endif %}"
Expand Down

0 comments on commit 1f20bd9

Please sign in to comment.