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

playbook忽略错误

时间:2020-10-07 21:32:58      阅读:23      评论:0      收藏:0      [点我收藏+]

标签:ansi   reg   fqdn   gis   web   检测   server   stat   默认   

 

默认playbook会检测task执行的返回状态,如果遇到错误则会立即终止playbook的后续task执行,然而有些时候playbook即使执行错误了也要让其继续执行。

加入参数:ignore_errors:yes 忽略错误

 

    - name: Get PHP Install status
      shell: "rpm -qa | grep php"
      ignore_errors: yes
      register: get_php_install_status

    - name: Install PHP Server
      shell: yum localinstall -y /tmp/*.rpm
      when:
        - ansible_fqdn is match "web*"
        - get_php_install_status.rc != 0

 

playbook忽略错误

标签:ansi   reg   fqdn   gis   web   检测   server   stat   默认   

原文地址:https://www.cnblogs.com/chenlifan/p/13777466.html

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