Advertisement
Guest User

Untitled

a guest
May 4th, 2015
244
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. - set_fact: arch=x86_64
  2. ignore_errors: true
  3. when: ansible_machine == 'x86_64'
  4.  
  5. - set_fact: distro=centos
  6. ignore_errors: true
  7. when: >
  8. (
  9. ansible_distribution == 'CentOS' or
  10. ansible_distribution == 'RedHat'
  11. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement