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
301 B
YAML
18 lines
301 B
YAML
7 months ago
|
- 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
|