2015-01-07 18:41:35 +08:00
|
|
|
---
|
2015-05-16 00:27:41 +08:00
|
|
|
- name: fail on unsupported system
|
2015-01-07 18:41:35 +08:00
|
|
|
fail: "msg=System not supported {{ ansible_system }}"
|
|
|
|
when: "ansible_system not in ['Linux']"
|
|
|
|
|
2015-05-16 00:27:41 +08:00
|
|
|
- name: fail on unsupported architecture
|
2015-01-07 18:41:35 +08:00
|
|
|
fail: "msg=Architecture not supported {{ ansible_architecture }}"
|
|
|
|
when: "ansible_architecture not in ['x86_64']"
|
|
|
|
|
2015-05-16 00:27:41 +08:00
|
|
|
- name: fail on unsupported distribution
|
2015-01-07 18:41:35 +08:00
|
|
|
fail: "msg=Distribution not supported {{ ansible_os_family }}"
|
|
|
|
when: "ansible_os_family not in ['Debian', 'RedHat']"
|