library/roles/geoserver/geoserver: Add the possibility to overwrite specific jars inside the distribution.

This commit is contained in:
Andrea Dell'Amico 2017-03-17 16:24:35 +01:00
parent b9a6310195
commit e908677c88
3 changed files with 10 additions and 1 deletions

View File

@ -8,3 +8,4 @@ geoserver_download_url: 'http://sourceforge.net/projects/geoserver/files/GeoServ
geoserver_download_directory: /srv/geoserver
geoserver_data_directory: /srv/geoserver_data

View File

@ -20,6 +20,14 @@
with_items: '{{ tomcat_m_instances }}'
notify: tomcat instances restart
- name: Download newer jar files when needed
get_url: url={{ item.1.url }} dest={{ item.0.instance_path }}/webapps/{{ geoserver_app_name }}/WEB-INF/lib/{{ item.1.file }} owner={{ item.0.user }} group={{ item.0.user }} force=yes
with_together:
- '{{ tomcat_m_instances }}'
- '{{ geoserver_patches_data | default ([]) }}'
notify: tomcat instances restart
tags: [ 'geoserver', 'geopatch' ]
when: geoserver_install
tags: geoserver

View File

@ -6,7 +6,7 @@
{% if smartgears_persistence_location is defined %}
<persistence location="{{ smartgears_persistence_location }}"/>
{% endif %}
<exclude>*</exclude>
<exclude>/*</exclude>
</application>