unarchive.yml 363 B

1234567891011121314
  1. ---
  2. - shell: ls /var/lib/etcd
  3. register: output
  4. - debug:
  5. msg: "output: {{ output }}"
  6. - name: Unarchive backup
  7. # can't use unarchive https://github.com/ansible/ansible/issues/30821
  8. # unarchive:
  9. # src: "{{ l_etcd_backup_dir }}.tgz"
  10. # dest: "{{ l_etcd_backup_dir }}"
  11. command: >
  12. tar -xf "{{ l_etcd_backup_dir }}.tgz" -C "{{ etcd_data_dir }}"