ansible-roles/roles/diagrams/tasks/install.yml

16 lines
453 B
YAML
Raw Normal View History

2021-12-01 19:13:34 +01:00
---
- when: diagrams_install_mode != 'none'
block:
- name: Download diagrams WAR
get_url:
url: "{{ diagrams_war_url }}"
dest: "{{ diagrams_root_dir }}/tmp/draw.war"
2022-02-27 12:00:06 +01:00
checksum: sha256:{{ diagrams_war_sha256 }}
2021-12-01 19:13:34 +01:00
- 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