ansible.builtin.unarchive – Unpacks an archive after ...
docs.ansible.com › ansible › latestDec 21, 2021 · -name: Extract foo.tgz into /var/lib/foo ansible.builtin.unarchive: src: foo.tgz dest: /var/lib/foo-name: Unarchive a file that is already on the remote machine ansible.builtin.unarchive: src: /tmp/foo.zip dest: /usr/local/bin remote_src: yes-name: Unarchive a file that needs to be downloaded (added in 2.0) ansible.builtin.unarchive: src: https://example.com/example.zip dest: /usr/local/bin remote_src: yes-name: Unarchive a file with extra options ansible.builtin.unarchive: src: /tmp/foo.zip ...
community.windows.win_unzip - Ansible
docs.ansible.com › windows › win_unzip_moduleDec 21, 2021 · You might already have this collection installed if you are using the ansible package. It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list. To install it, use: ansible-galaxy collection install community.windows. To use it in a playbook, specify: community.windows.win_unzip.