--- - name: Fail on unsupported system fail: "msg=System not supported {{ ansible_system }}" when: "ansible_system not in ['Linux']" - name: Fail on unsupported architecture fail: "msg=Architecture not supported {{ ansible_architecture }}" when: "ansible_architecture not in ['x86_64']" - name: Fail on unsupported distribution fail: "msg=Distribution not supported {{ ansible_os_family }}" when: "ansible_os_family not in ['Debian', 'RedHat']"