?写一个 playbook,内容如下。
?运行此playbook,命令如下。
?
查看两台主机上/opt/aa.txt 的内容,命令如下。
[bdqn@rhel13 templates]$ ansible db -m shell -a "cat /opt/aa.txt"?
?练习:写一个 jinja2模板文件,内容如下。
?
?
[bdqn@rhel13 demo4]$ ansible-playbook 2.yaml
?查看两台机器上/opt/bb.conf的内容,命令如下。
[bdqn@rhel13 demo4]$ ansible db -m shell -a "cat /opt/bb.conf"
?写一个playbook,内容如下。
?运行此playbook。命令如下。
[bdqn@rhel13 demo4]$ ansible-playbook 3.yaml
查看两台机器上/opt/cc.conf的内容,命令如下。
[bdqn@rhel13 demo4]$ ansible db -m shell -a "cat /opt/cc.conf"?
?
?
?运行此playbook,内容如下。
[bdqn@rhel13 demo4]$ ansible-playbook 4.yaml
?查看server2 上/opt/dd.conf的内容,命令如下。
[bdqn@rhel13 demo4]$ ansible server2 -m shell -a "cat /opt/dd.conf"
?
?
[bdqn@rhel13 demo4]$ ansible-playbook 5.yaml
?查看被管理主机的/opt/ee.conf,里面包括users列表中所有的用户名。
[bdqn@rhel13 demo4]$ ansible server2 -m shell -a "cat /opt/ee.txt"
?