Skip to content

Commit 290e418

Browse files
committed
Fix for geonetwork war deploy
1 parent 58ceb0c commit 290e418

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

ansible/roles/geonetwork/vars/main.yml

+1
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ artifactId: ""
44
packaging: ""
55
classifier: ""
66
geonetwork_war_url: "https://github.com/geonetwork/core-geonetwork/releases/download/3.4.4/geonetwork.war"
7+
tomcat_deploy_from_url: true

ansible/roles/tomcat_deploy/tasks/main.yml

+5-2
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,11 @@
5858
- name: remove existing webapp (to ensure a clean redeployment)
5959
file: path="{{ tomcat_deploy_dir }}/{{ war_filename }}.war" state=absent
6060

61+
- name: download from url {{ war_url }}
62+
get_url: url={{ war_url }} dest="{{ tomcat_deploy_dir }}/{{ war_filename }}.war" checksum="{{ war_checksum | default('') }}" force=true timeout=60
63+
when: war_local_build is not defined and tomcat_deploy_from_url | default(false)
64+
6165
- name: download from maven repo {{ war_url }}
62-
#get_url: url={{ war_url }} dest="{{ tomcat_deploy_dir }}/{{ war_filename }}.war" checksum="{{ war_checksum | default('') }}" force=true timeout=60
6366
maven_artifact:
6467
group_id: "{{groupId | default('au.org.ala')}}"
6568
artifact_id: "{{artifactId}}"
@@ -73,7 +76,7 @@
7376
owner: "{{ tomcat_user }}"
7477
group: "{{ tomcat_user }}"
7578
verify_checksum: always
76-
when: war_local_build is not defined
79+
when: war_local_build is not defined and not tomcat_deploy_from_url | default(false)
7780
notify:
7881
- restart tomcat
7982

0 commit comments

Comments
 (0)