11 lines
209 B
YAML
11 lines
209 B
YAML
---
|
|
- name: remove file
|
|
hosts: all
|
|
become: true
|
|
roles:
|
|
- role: node/remove_file
|
|
vars:
|
|
file_path: "{{ file_path }}"
|
|
|
|
# ansible-playbook playbooks/node/remove_file.yml -i inventory.ini
|