File: _cleanup_file.yml

package info (click to toggle)
python-mitogen 0.3.37-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,728 kB
  • sloc: python: 24,644; sh: 198; makefile: 74; perl: 19; ansic: 18
file content (17 lines) | stat: -rw-r--r-- 301 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
- 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