15 lines
370 B
YAML
15 lines
370 B
YAML
---
|
|
- name: "Remove the master_images folder and deployment kernel/ramdisk for clean redeployments when testing."
|
|
hosts: localhost
|
|
connection: local
|
|
become: yes
|
|
gather_facts: yes
|
|
tasks:
|
|
- file:
|
|
path: "{{ item }}"
|
|
state: absent
|
|
loop:
|
|
- "{{ ironic_tftp_master_path }}"
|
|
- "{{ ipa_kernel }}"
|
|
- "{{ ipa_ramdisk }}"
|