Hi!
I would like to skip the unzip of my task if the directory already exists. Here are my info.
contents of playbook: install_zip.yml
Hi!
I would like to skip the unzip of my task if the directory already exists. Here are my info.
contents of playbook: install_zip.yml
Try
when: ( ansible_os_family == “Windows” and not dir_stat.stat.exists )
Chris