mirror of
https://git.lapiole.org/dani/ansible-roles.git
synced 2025-10-08 07:25:14 +02:00
Update to 2021-12-01 19:13
This commit is contained in:
15
roles/diagrams/tasks/install.yml
Normal file
15
roles/diagrams/tasks/install.yml
Normal file
@@ -0,0 +1,15 @@
|
||||
---
|
||||
|
||||
- when: diagrams_install_mode != 'none'
|
||||
block:
|
||||
- name: Download diagrams WAR
|
||||
get_url:
|
||||
url: "{{ diagrams_war_url }}"
|
||||
dest: "{{ diagrams_root_dir }}/tmp/draw.war"
|
||||
checksum: sha1:{{ diagrams_war_sha1 }}
|
||||
|
||||
- name: Move WAR to the webapp dir
|
||||
copy: src={{ diagrams_root_dir }}/tmp/draw.war dest={{ diagrams_root_dir }}/webapps/draw.war remote_src=True
|
||||
notify: restart diagrams
|
||||
|
||||
tags: diagrams
|
Reference in New Issue
Block a user