Matrix Docker Ansible eploy
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 

19 líneas
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