安装
在 mac
上使用 brew
安装 ansible
:
1 | brew install ansible |
安装完成后进行验证:
1 | ansible --version |
基础功能
建立一个文件夹,例如在 Documents
下建立一个名为 ansible
的目录:
1 | mkdir -p ~/Documents/ansible |
接着在目录下建立一个 hosts
文件,命令:
1 | vim ~/Documents/ansible/hosts |
內容如下:
1 | [localhost] |
以上都准备好之后就可以使用 ansible
的 ping module
了!
命令与结果如下:
1 | ansible all -m ping -i ~/Documents/ansible/hosts |
以上操作和网上找到的大多数教程有点差异,不一样的地方有:
- 没有在
/etc/ansible
下建hosts
- 执行
ansible
指令时多了一个参数-i
(inventory)
原因是因为在 mac
环境下,要存取 /etc
下的文件有點麻烦。
以上。