mirror of
https://github.com/spantaleev/matrix-docker-ansible-deploy.git
synced 2024-11-08 00:22:26 +00:00
22 lines
613 B
YAML
22 lines
613 B
YAML
|
|
||
|
- name: Ensure /matrix/awx is empty
|
||
|
shell: rm -r /matrix/awx/*
|
||
|
|
||
|
- name: Ensure /matrix/synapse is empty
|
||
|
shell: rm -r /matrix/synapse/*
|
||
|
|
||
|
- name: Extract from /chroot/backup
|
||
|
shell: tar -xvzf /chroot/backup/matrix.tar.gz -C /matrix/
|
||
|
|
||
|
- name: Ensure correct ownership of /matrix/awx
|
||
|
shell: chown -R matrix:matrix /matrix/awx
|
||
|
|
||
|
- name: Ensure correct ownership of /matrix/synapse
|
||
|
shell: chown -R matrix:matrix /matrix/synapse
|
||
|
|
||
|
- name: Fetch matrix_vars.yml file to AWX
|
||
|
fetch:
|
||
|
src: /matrix/awx/matrix_vars.yml
|
||
|
dest: /var/lib/awx/projects/clients/{{ member_id }}/{{ subscription_id }}/
|
||
|
flat: yes
|