0%

Ansible 目录、文件操作

Ansible 目录、文件操作

目录创建、删除

1
2
3
4
5
6
7
8
9
10
- name: Create a directory if it does not exist
file:
path: /appvol/some_directory
state: directory
mode: '0755'

- name: Remove a directory if it exist
file:
path: /appvol/some_directory
state: absent

文件创建、删除

1
2
3
4
5
6
7
8
9
10
- name: Create a file if it does not exist
file:
path: /appvol/some_directory/hello.txt
state: touch
mode: '0755'

- name: Remove a file if it exist
file:
path: /appvol/some_directory/hello.txt
state: absent

删除某个目录下的所有文件,或者符合条件的文件名

1
2
3
4
5
6
7
8
9
10
11
12
- name: list the files of dir some_directory
shell: ls
args:
chdir: /appvol/some_directory
register: files_list

- name: Remove a directory if it does not exist
file:
path: /appvol/some_directory/{{ item }}
state: absent
with_items:
- "{{ files_list.stdout_lines }}"