运行 yz 任务只有在 ansible 中满足 x 任务条件

run yz tasks only if x task condition is met in ansible

团队, 我有 10 个任务,我想 运行 2-10 只有满足任务 1 中的条件。

- name: 1Check if the node needs to be processed
  stat: /tmp/fscache-cleaned-up1.log
  register: dc_status
- name: 2Check if the node needs to be processed
  stat: /tmp/fscache-cleaned-up2.log
  register: dc_status
  failed_when: dc_status.stat.exists

.. .. ..

您必须在统计模块调用中使用 "path" 并使用 "block" 来合并相关任务,如下所示:

- name: Check if the node needs to be processed
  stat:
    path: /tmp/fscache-cleaned-up1.log
  register: dc_status

- name: Run this only when the log file exists
  block:
    - name: Install something
      yum:
        name:
        - somepackage
        state: present

     - name: Apply a config template
      template:
        src: templates/src.j2
        dest: /etc/foo.conf

    - name: Start a service and enable it
      service:
        name: bar
        state: started
        enabled: True
  when: 
    - dc_status.stat.exists
    - dc_status.stat.is_file

附加信息:ansible stat module, block usage