mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-06 09:15:49 -05:00
12 lines
216 B
YAML
12 lines
216 B
YAML
|
---
|
||
|
- name: Test playbook
|
||
|
hosts: all
|
||
|
tasks:
|
||
|
- name: Remove temp files
|
||
|
become: true
|
||
|
ansible.builtin.file:
|
||
|
path: "{{ item }}"
|
||
|
state: absent
|
||
|
with_items:
|
||
|
- "/tmp/test-1"
|