From 168faef3bd9c3c644af186e6b5d9d51cc8f40a71 Mon Sep 17 00:00:00 2001 From: Kyle Christensen Date: Mon, 2 Jun 2014 15:00:43 -0400 Subject: [PATCH] Fix Ansible architecture tasks --- roles/common/tasks/Debian.yml | 2 +- roles/common/tasks/RedHat.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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