play-book 判断

# vim when.yml
---
- name: when_test
  hosts: testhosts
  user: root
  gather_facts: True
  tasks:
    - name: use when
      shell: touch /tmp/when.txt
      when: facter_ipaddress == "192.168.32.105"

你可能感兴趣的:(play-book 判断)