From: Kyle Christensen Date: Mon, 2 Jun 2014 19:00:43 +0000 (-0400) Subject: Fix Ansible architecture tasks X-Git-Tag: v1.0.0~352^2 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=168faef3bd9c3c644af186e6b5d9d51cc8f40a71;p=ceph-ansible.git Fix Ansible architecture tasks --- diff --git a/roles/common/tasks/Debian.yml b/roles/common/tasks/Debian.yml index e0d8bef58..a0880bf31 100644 --- a/roles/common/tasks/Debian.yml +++ b/roles/common/tasks/Debian.yml @@ -7,7 +7,7 @@ when: ansible_system not in ['Linux'] - name: Fail on unsupported architecture - fail: msg="Architeture not supported {{ ansible_architectore }}" + fail: msg="Architecture not supported {{ ansible_architecture }}" when: ansible_architecture not in ['x86_64'] - name: Fail on unsupported distribution diff --git a/roles/common/tasks/RedHat.yml b/roles/common/tasks/RedHat.yml index 29005e160..93327c332 100644 --- a/roles/common/tasks/RedHat.yml +++ b/roles/common/tasks/RedHat.yml @@ -7,7 +7,7 @@ when: ansible_system not in ['Linux'] - name: Fail on unsupported architecture - fail: msg="Architeture not supported {{ ansible_architectore }}" + fail: msg="Architecture not supported {{ ansible_architecture }}" when: ansible_architecture not in ['x86_64'] - name: Fail on unsupported distribution