forked from ISTI-ansible-roles/ansible-roles
Merge branch 'master' of adellam/ansible-roles into master
This commit is contained in:
commit
aed8f0050d
|
@ -20,3 +20,6 @@ thredds_host_institution_name: 'ORG'
|
||||||
thredds_host_institution_web: ''
|
thredds_host_institution_web: ''
|
||||||
thredds_force_ssl_for_user_data: False
|
thredds_force_ssl_for_user_data: False
|
||||||
thredds_palettes_customisation: False
|
thredds_palettes_customisation: False
|
||||||
|
thredds_abstract: 'Scientific Data'
|
||||||
|
thredds_contact_name: 'Support'
|
||||||
|
thredds_google_analytics_key: ''
|
|
@ -22,15 +22,23 @@
|
||||||
register: thredds_skip_conf
|
register: thredds_skip_conf
|
||||||
tags: [ 'thredds', 'tomcat', 'thredds_conf' ]
|
tags: [ 'thredds', 'tomcat', 'thredds_conf' ]
|
||||||
|
|
||||||
- name: Install the Thredds data configuration files
|
- name: Install the Thredds data configuration files -only at initialization-
|
||||||
template: src={{ item[1] }}.j2 dest={{ thredds_data_content_dir }}/thredds/{{ item[1] }} owner={{ item.0.user }} group={{ item.0.user }} mode=644
|
template: src={{ item[1] }}.j2 dest={{ thredds_data_content_dir }}/thredds/{{ item[1] }} owner={{ item.0.user }} group={{ item.0.user }} mode=644
|
||||||
with_nested:
|
with_nested:
|
||||||
- '{{ tomcat_m_instances }}'
|
- '{{ tomcat_m_instances }}'
|
||||||
- [ 'threddsConfig.xml', 'catalog.xml', 'wmsConfig.xml' ]
|
- ['catalog.xml', 'wmsConfig.xml' ]
|
||||||
notify: tomcat instances restart
|
notify: tomcat instances restart
|
||||||
when: not thredds_skip_conf.stat.exists
|
when: not thredds_skip_conf.stat.exists
|
||||||
tags: [ 'thredds', 'tomcat', 'thredds_conf' ]
|
tags: [ 'thredds', 'tomcat', 'thredds_conf' ]
|
||||||
|
|
||||||
|
- name: Install-update the Thredds data configuration files
|
||||||
|
template: src={{ item[1] }}.j2 dest={{ thredds_data_content_dir }}/thredds/{{ item[1] }} owner={{ item.0.user }} group={{ item.0.user }} mode=644
|
||||||
|
with_nested:
|
||||||
|
- '{{ tomcat_m_instances }}'
|
||||||
|
- [ 'threddsConfig.xml']
|
||||||
|
notify: tomcat instances restart
|
||||||
|
tags: [ 'thredds', 'tomcat', 'thredds_conf' ]
|
||||||
|
|
||||||
- name: Create the file that states that the thredds instance has been configured
|
- name: Create the file that states that the thredds instance has been configured
|
||||||
copy: content="initialized by ansible" dest={{ thredds_data_content_dir }}/thredds/.conf_initialized mode=0400
|
copy: content="initialized by ansible" dest={{ thredds_data_content_dir }}/thredds/.conf_initialized mode=0400
|
||||||
register: thredds_skip_conf
|
register: thredds_skip_conf
|
||||||
|
|
|
@ -6,13 +6,13 @@
|
||||||
<serverInformation>
|
<serverInformation>
|
||||||
<name>{{ thredds_server_name }}</name>
|
<name>{{ thredds_server_name }}</name>
|
||||||
<logoUrl>{{ thredds_logo_url }}</logoUrl>
|
<logoUrl>{{ thredds_logo_url }}</logoUrl>
|
||||||
<logoAltText>{{ thredds_server_name }}</logoAltText>
|
<logoAltText>{{ thredds_logo_alt_text }}</logoAltText>
|
||||||
|
|
||||||
<abstract>Scientific Data</abstract>
|
<abstract>{{ thredds_abstract }}</abstract>
|
||||||
<keywords>meteorology, atmosphere, climate, ocean, earth science</keywords>
|
<keywords>meteorology, atmosphere, climate, ocean, earth science</keywords>
|
||||||
|
|
||||||
<contact>
|
<contact>
|
||||||
<name>Support</name>
|
<name>{{ thredds_contact_name}}</name>
|
||||||
<organization>{{ thredds_organization }}</organization>
|
<organization>{{ thredds_organization }}</organization>
|
||||||
<email>{{ thredds_email }}</email>
|
<email>{{ thredds_email }}</email>
|
||||||
<!--phone></phone-->
|
<!--phone></phone-->
|
||||||
|
@ -55,7 +55,7 @@
|
||||||
* webpages associated with THREDDS. This will not track WMS or DAP
|
* webpages associated with THREDDS. This will not track WMS or DAP
|
||||||
* requests for data, only browsing the catalog.
|
* requests for data, only browsing the catalog.
|
||||||
-->
|
-->
|
||||||
<googleTrackingCode></googleTrackingCode>
|
<googleTrackingCode>{{ thredds_google_analytics_key }}</googleTrackingCode>
|
||||||
|
|
||||||
</htmlSetup>
|
</htmlSetup>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue