码迷,mamicode.com
首页 > 其他好文 > 详细

12.ansible-roles-include(2)

时间:2019-08-02 09:13:28      阅读:119      评论:0      收藏:0      [点我收藏+]

标签:change   roles   playbook   ble   code   failed   role   nginx   The   

1.1ansible之include

[root@m01 playbook]# cat test2.yml 
- name: debug
  debug: msg="debug"
[root@m01 playbook]# 

[root@m01 playbook]# cat test.yml 
- hosts: nginx
  tasks:
  - include: test2.yml

[root@m01 playbook]# ansible-playbook test.yml 

PLAY [nginx] **********************************************************************************************

TASK [Gathering Facts] ************************************************************************************
ok: [10.0.0.62]

TASK [debug] **********************************************************************************************
ok: [10.0.0.62] => {
    "msg": "debug"
}

PLAY RECAP ************************************************************************************************
10.0.0.62                  : ok=2    changed=0    unreachable=0    failed=0   

1.2ansible-role

该博主写的认真又详细,稍后我再写自己的吧
http://www.zsythink.net/archives/3063

12.ansible-roles-include(2)

标签:change   roles   playbook   ble   code   failed   role   nginx   The   

原文地址:https://blog.51cto.com/10983441/2425805

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!