ansible-playbook循环安装软件包(with_items)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ansible-playbook循环安装软件包(with_items)相关的知识,希望对你有一定的参考价值。
[[email protected] ~]# vim /etc/ansible/ansible.cfg ##定义分组文件路径
[defaults]
#some basic default values...
inventory = /etc/ansible/hosts ##分组文件路径
:wq
[[email protected] ~]# vim /etc/ansible/hosts ##定义分组
##db-[99:101]-node.example.com
[web]
192.168.4.2 ansible_ssh_user="root" ansible_ssh_pass="123"
192.168.4.3 ansible_ssh_user="root" ansible_ssh_pass="123456"
[db]
192.168.4.1 ansible_ssh_user="root" ansible_ssh_pass="123456"
:wq
[[email protected] ~]# vim config_service.yml ###编写yaml脚本
[[email protected] ~]# ansible-playbook config_service.yml ##执行yaml脚本
以上是关于ansible-playbook循环安装软件包(with_items)的主要内容,如果未能解决你的问题,请参考以下文章