You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
514 B
15 lines
514 B
5 years ago
|
---
|
||
|
|
||
|
- name: Remove temp files
|
||
|
file: path={{ item }} state=absent
|
||
|
with_items:
|
||
|
- "{{ kanboard_root_dir }}/tmp/kanboard-{{ kanboard_version }}/"
|
||
|
- "{{ kanboard_root_dir }}/tmp/kanboard-v{{ kanboard_version }}.zip"
|
||
|
- "{{ kanboard_root_dir }}/web/data"
|
||
|
tags: kanboard
|
||
|
|
||
|
- name: Remove plugins archives
|
||
|
file: path={{ kanboard_root_dir }}/tmp/{{ kanboard_plugins[item].name }}-{{ kanboard_plugins[item].version }}.zip state=absent
|
||
|
with_items: "{{ kanboard_plugins.keys() | list }}"
|
||
|
tags: kanboard
|