(2) 使用ansible在被控机中建立一个文件夹:/root/你的姓名缩写
时间: 2023-12-04 12:02:38 浏览: 91
好的,您可以使用以下的Ansible Playbook来在被控机中建立一个文件夹:/root/你的姓名缩写(请将“your_initials”替换为您的姓名缩写):
```
- name: Create folder in /root
hosts: <your_target_host>
become: true
tasks:
- name: Create folder
file:
path: "/root/your_initials"
state: directory
```
请将 `<your_target_host>` 替换为您的目标主机的主机名或IP地址。如果需要使用SSH密钥进行身份验证,请确保您已经将SSH密钥添加到被控机器的authorized_keys文件中。
阅读全文