ansible-playbook 创建3个文件
时间: 2024-02-24 15:57:44 浏览: 213
A等3个文件
可以通过以下的 Ansible Playbook 来创建 3 个文件:
```yaml
---
- name: Create 3 files
hosts: localhost
become: true
tasks:
- name: Create first file
copy:
content: "This is the content of the first file."
dest: "/tmp/file1.txt"
- name: Create second file
copy:
content: "This is the content of the second file."
dest: "/tmp/file2.txt"
- name: Create third file
copy:
content: "This is the content of the third file."
dest: "/tmp/file3.txt"
```
在上面的 Playbook 中,使用 `copy` 模块来创建文件,并在 `tasks` 下定义了 3 个任务来创建 3 个不同的文件。最终,这 3 个文件将会被创建在 `/tmp` 目录下。需要注意的是,为了能够在本地主机上执行这个 Playbook,需要将 `hosts` 设为 `localhost`。同时,因为需要在本地主机上创建文件,所以需要使用 `become` 来获取管理员权限。
阅读全文