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.
18 lines
446 B
YAML
18 lines
446 B
YAML
6 years ago
|
- name: Remove test volume group
|
||
|
lvg:
|
||
|
vg: testvg
|
||
|
state: absent
|
||
|
|
||
|
- name: Detach loop device
|
||
|
command: "losetup -d {{ item.stdout }}"
|
||
|
loop: "{{ loop_devices.results|default([]) }}"
|
||
|
when:
|
||
|
- item.stdout is defined
|
||
|
- item.stdout is match("/dev/.*")
|
||
|
|
||
|
- name: Remove device files
|
||
|
file:
|
||
|
path: "{{ ansible_user_dir }}/ansible_testing/img{{ item }}"
|
||
|
state: absent
|
||
|
with_sequence: 'count={{ loop_devices.results|length }}'
|