mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
1.4 KiB
YAML
57 lines
1.4 KiB
YAML
3 years ago
|
- name: Test missing binaries
|
||
|
when: ansible_pkg_mgr in ('yum', 'dnf', 'apt', 'pkgng')
|
||
|
block:
|
||
|
- name: Remove zip binaries
|
||
|
package:
|
||
|
state: absent
|
||
|
name:
|
||
|
- zip
|
||
|
- unzip
|
||
|
notify: restore packages
|
||
|
|
||
|
- name: create unarchive destinations
|
||
|
file:
|
||
|
path: '{{ remote_tmp_dir }}/test-unarchive-{{ item }}'
|
||
|
state: directory
|
||
|
loop:
|
||
|
- zip
|
||
|
- tar
|
||
|
|
||
|
# With the zip binaries absent and tar still present, this task should work
|
||
|
- name: unarchive a tar file
|
||
|
unarchive:
|
||
|
src: '{{remote_tmp_dir}}/test-unarchive.tar'
|
||
|
dest: '{{remote_tmp_dir}}/test-unarchive-tar'
|
||
|
remote_src: yes
|
||
|
register: tar
|
||
|
|
||
|
- name: unarchive a zip file
|
||
|
unarchive:
|
||
|
src: '{{remote_tmp_dir}}/test-unarchive.zip'
|
||
|
dest: '{{remote_tmp_dir}}/test-unarchive-zip'
|
||
|
list_files: True
|
||
|
remote_src: yes
|
||
|
register: zip_fail
|
||
|
ignore_errors: yes
|
||
|
|
||
|
- name: Ensure tasks worked as expected
|
||
|
assert:
|
||
|
that:
|
||
|
- tar is success
|
||
|
- zip_fail is failed
|
||
|
- zip_fail.msg is search('Unable to find required')
|
||
|
|
||
|
- name: Remove unarchive destinations
|
||
|
file:
|
||
|
path: '{{ remote_tmp_dir }}/test-unarchive-{{ item }}'
|
||
|
state: absent
|
||
|
loop:
|
||
|
- zip
|
||
|
- tar
|
||
|
|
||
|
- name: Reinsntall zip binaries
|
||
|
package:
|
||
|
name:
|
||
|
- zip
|
||
|
- unzip
|