我猜 ansible 无法为您的主机加载主机变量,因为您在 hosts.yml 中定义的主机名与 /etc/ansible/host_vars/ 目录中的文件名不匹配。也许您没有重命名 sample.yml 文件,它需要与主机名匹配。
请参阅
http://docs.ansible.com/ansible/latest/intro_inventory.html
[更新]
我在 docker centos 7 映像上试用了这个 ansible playbook。我在让它正常运行方面也遇到了一些问题。但是,我确实有联系。确保你将 git repo 的内容复制到 /etc/ansible
/etc/ansible
-rw-r--r--. 1 root root 9191 Sep 7 12:22 LICENSE.md
-rw-r--r--. 1 root root 5672 Sep 7 12:22 README.asciidoc
-rw-r--r--. 1 root root 555 Sep 7 12:22 Vagrantfile
-rw-r--r--. 1 root root 18066 Jun 1 21:49 ansible.cfg
drwxr-xr-x. 2 root root 42 Sep 7 12:26 group_vars
-rw-r--r--. 1 root root 1050 Sep 7 12:31 hosts
-rw-r--r--. 1 root root 97 Sep 7 12:22 ishsystem.yml
-rw-r--r--. 1 root root 9191 Sep 7 12:22 license-2.0.txt
drwxr-xr-x. 9 root root 4096 Sep 7 12:22 roles
-rw-r--r--. 1 root root 138 Sep 7 12:39 setupci.ym
编辑主机文件
##content of hosts
ciserver ansible_connection=local
检查 ansible 是否可以连接到主机
ansible all -m ping
ciserver | SUCCESS => {
"changed": false,
"ping": "pong"
}
将 group_var 中的 sample.yml 复制到 ciserver.yml(与 hosts 中的名称相同)文件并进行编辑。
/etc/ansible/group_vars
-rw-r--r--. 1 root root 1882 Sep 7 12:26 ciserver.yml
-rw-r--r--. 1 root root 1873 Sep 7 12:22 sample.yml
运行剧本
ansible-playbook setupci.yml
我的脚本在尝试启动/停止防火墙时停止。该服务在 centos 上不存在,因此失败。看看你能不能走到这一步。
fatal: [ciserver]: FAILED! => {"changed": false, "failed": true, "msg": "Could not find the requested service firewalld.service: host"}