Guest User

Untitled

a guest
Jan 19th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. - hosts: localhost
  2. vars:
  3. have_ad_provider_1: "{{ ansible_os_family == 'RedHat' and ansible_distribution_major_version|int >= 6 }}"
  4. have_ad_provider_2: "{{ ansible_os_family == 'FluffyBunny' }}"
  5. tasks:
  6. - debug:
  7. msg: Hello world
  8. when: have_ad_provider_1
  9.  
  10. - debug:
  11. msg: Goodnight moon
  12. when: have_ad_provider_2
Add Comment
Please, Sign In to add comment