/var/log/MY_FOLDER 안에 파일을 모두 지우는 방법
- name: Cleanup directory
hosts: abc
become: yes
tasks:
- file:
state: "{{ item }}"
path: "/var/log/MY_FOLDER"
owner: apache
group: apache
mode: '0775'
with_items:
- absent
- directory
/var/log/MY_FOLDER 안에 파일을 모두 지우는 방법
- name: Cleanup directory
hosts: abc
become: yes
tasks:
- file:
state: "{{ item }}"
path: "/var/log/MY_FOLDER"
owner: apache
group: apache
mode: '0775'
with_items:
- absent
- directory