85a8f3cfe9
Many minor cleanups, including: - Consistent capitalization for ironic and bifrost - Typos - Prefer more active construction in task names - Reflow comment text where appropriate for enhanced readability Change-Id: I05a1ecd6c49003e02961ab3c9cbbcb3b31cd4af6
11 lines
343 B
YAML
11 lines
343 B
YAML
---
|
|
- hosts: localhost
|
|
connection: local
|
|
name: "Remove the master_images folder and deployment kernel/ramdisk for clean redeployments when testing."
|
|
sudo: yes
|
|
gather_facts: yes
|
|
tasks:
|
|
- file: path=/tftpboot/master_images state=absent
|
|
- file: path="{{ipa_kernel}}" state=absent
|
|
- file: path="{{ipa_ramdisk}}" state=absent
|