Matrix Docker Ansible eploy
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

19 строки
474 B

  1. - name: Ensure /matrix/awx is empty
  2. shell: rm -r /matrix/awx/*
  3. ignore_errors: yes
  4. - name: Ensure /matrix/synapse is empty
  5. shell: rm -r /matrix/synapse/*
  6. ignore_errors: yes
  7. - name: Extract from /chroot/export
  8. shell: tar -xvzf /chroot/export/matrix.tar.gz -C /matrix/
  9. - name: Ensure correct ownership of /matrix/awx
  10. shell: chown -R matrix:matrix /matrix/awx
  11. - name: Ensure correct ownership of /matrix/synapse
  12. shell: chown -R matrix:matrix /matrix/synapse