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.
|
- name: Cleanup local file
|
|
file:
|
|
path: /tmp/{{ file_name }}
|
|
state: absent
|
|
delegate_to: localhost
|
|
run_once: true
|
|
tags:
|
|
- cleanup_local
|
|
- cleanup
|
|
|
|
- name: Cleanup target file
|
|
file:
|
|
path: /tmp/{{ file_name }}.out
|
|
state: absent
|
|
tags:
|
|
- cleanup_target
|
|
- cleanup
|