Ansible Unarchive Error: ‘Could Not Handle Archive’

Ansible Unarchive Error: 'Could Not Handle Archive'

Today, while trying to use Ansible to extract a local tar package, I received the message “could not handle archive. Command “/usr/bin/unzip” could not handle archive”. This is my YAML file. I intend to extract the files to the bin directory. it@mgt:~/kubelazy$ cat roles/unarchive-pkgs/tasks/main.yml—- name: unarchive kubernetes unarchive: src: bin/kubernetes-server-linux-amd64.tar.gz dest: "bin/" Running which unzip … Read more