File tree 2 files changed +6
-2
lines changed
2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -4,3 +4,4 @@ artifactId: ""
4
4
packaging : " "
5
5
classifier : " "
6
6
geonetwork_war_url : " https://github.com/geonetwork/core-geonetwork/releases/download/3.4.4/geonetwork.war"
7
+ tomcat_deploy_from_url : true
Original file line number Diff line number Diff line change 58
58
- name : remove existing webapp (to ensure a clean redeployment)
59
59
file : path="{{ tomcat_deploy_dir }}/{{ war_filename }}.war" state=absent
60
60
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
+
61
65
- 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
63
66
maven_artifact :
64
67
group_id : " {{groupId | default('au.org.ala')}}"
65
68
artifact_id : " {{artifactId}}"
73
76
owner : " {{ tomcat_user }}"
74
77
group : " {{ tomcat_user }}"
75
78
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)
77
80
notify :
78
81
- restart tomcat
79
82
You can’t perform that action at this time.
0 commit comments