mirror of
https://git.lapiole.org/dani/ansible-roles.git
synced 2025-04-26 07:05:19 +02:00
17 lines
388 B
YAML
17 lines
388 B
YAML
![]() |
---
|
||
|
|
||
|
- name: Remove temp files
|
||
|
file: path={{ element_root_dir }}/tmp/{{ item }} state=absent
|
||
|
loop:
|
||
|
- element-v{{ element_version }}.tar.gz
|
||
|
- element-v{{ element_version }}
|
||
|
tags: matrix
|
||
|
|
||
|
- name: Remove old Riot install
|
||
|
file: path={{ item }} state=absent
|
||
|
loop:
|
||
|
- /opt/matrix/riot
|
||
|
- /etc/httpd/ansible_conf.d/10-riot_riot.conf
|
||
|
notify: reload httpd
|
||
|
tags: matrix
|