Matrix Docker Ansible eploy
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 

19 righe
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