zoukankan      html  css  js  c++  java
  • ansible-playbook


    [root@s19master ansible]# ansible-playbook  f4.yml --list-hosts

    playbook: f4.yml

      play #1 (dball): dball    TAGS: []
        pattern: [u'dball']
        hosts (2):
          192.168.16.235
          192.168.16.133
    [root@s19master ansible]# ansible-playbook  f4.yml --list-tasks

    playbook: f4.yml

      play #1 (dball): dball    TAGS: []
        tasks:
          yum install httpd    TAGS: []
          copy a configure file    TAGS: []
          start apache service    TAGS: []


    [root@s19master ansible]# ansible-playbook  -C f4.yml

    PLAY [dball] ************************************************************************************************************************************************

    TASK [Gathering Facts] **************************************************************************************************************************************
    ok: [192.168.16.133]
    ok: [192.168.16.235]

    TASK [yum install httpd] ************************************************************************************************************************************
    ok: [192.168.16.133]
    ok: [192.168.16.235]

    TASK [copy a configure file] ********************************************************************************************************************************
    changed: [192.168.16.133]
    changed: [192.168.16.235]

    TASK [start apache service] *********************************************************************************************************************************
    ok: [192.168.16.235]
    ok: [192.168.16.133]

    RUNNING HANDLER [restart service] ***************************************************************************************************************************
    changed: [192.168.16.133]
    changed: [192.168.16.235]

    PLAY RECAP **************************************************************************************************************************************************
    192.168.16.133             : ok=5    changed=2    unreachable=0    failed=0    skipped=0    rescued=0    ignored=0   
    192.168.16.235             : ok=5    changed=2    unreachable=0    failed=0    skipped=0    rescued=0    ignored=0   


    [root@s19master ansible]# ansible-playbook   f4.yml  --limit 192.168.16.235

    PLAY [dball] ************************************************************************************************************************************************

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

    TASK [yum install httpd] ************************************************************************************************************************************
    ok: [192.168.16.235]

    TASK [copy a configure file] ********************************************************************************************************************************
    changed: [192.168.16.235]

    TASK [start apache service] *********************************************************************************************************************************
    ok: [192.168.16.235]

    RUNNING HANDLER [restart service] ***************************************************************************************************************************
    changed: [192.168.16.235]

    PLAY RECAP **************************************************************************************************************************************************
    192.168.16.235             : ok=5    changed=2    unreachable=0    failed=0    skipped=0    rescued=0    ignored=0   


    [root@s19master ansible]# ansible-playbook   f4.yml

    PLAY [dball] ************************************************************************************************************************************************

    TASK [Gathering Facts] **************************************************************************************************************************************
    ok: [192.168.16.133]
    ok: [192.168.16.235]

    TASK [yum install httpd] ************************************************************************************************************************************
    ok: [192.168.16.133]
    ok: [192.168.16.235]

    TASK [copy a configure file] ********************************************************************************************************************************
    changed: [192.168.16.235]
    changed: [192.168.16.133]

    TASK [start apache service] *********************************************************************************************************************************
    ok: [192.168.16.235]
    ok: [192.168.16.133]

    RUNNING HANDLER [restart service] ***************************************************************************************************************************
    changed: [192.168.16.133]
    changed: [192.168.16.235]

    PLAY RECAP **************************************************************************************************************************************************
    192.168.16.133             : ok=5    changed=2    unreachable=0    failed=0    skipped=0    rescued=0    ignored=0   
    192.168.16.235             : ok=5    changed=2    unreachable=0    failed=0    skipped=0    rescued=0    ignored=0   



    [root@s19master ansible]# cat f4.yml
    ---
            - hosts: dball
              remote_user: root
              
              tasks:
              - name: yum install httpd
                yum: name=httpd
                ignore_errors: yes
              - name: copy a configure file
                copy: src=conf/httpd.conf dest=/etc/httpd/conf/httpd.conf backup=yes
                notify: restart service
              - name: start apache service  
                service: name=httpd state=started enabled=yes

              handlers:
              - name: restart service
                service: name=httpd state=restarted


  • 相关阅读:
    Shell脚本 --- 正则表达式和文本处理工具
    python的eval、exec函数
    内置函数 Built-in Functions
    关于Python中的lambda
    Python中*args和**kwargs的区别
    Python基础-10-文件操作
    Python基础-09-内置函数
    Python基础-08-函数
    Python基础-07-集合
    Python基础-06-字典
  • 原文地址:https://www.cnblogs.com/duoduoyichen/p/11054998.html
Copyright © 2011-2022 走看看