From 5452ab53465897f8130aaab47d27eba7eb84942f Mon Sep 17 00:00:00 2001 From: Ricky Elrod Date: Thu, 26 Sep 2013 19:55:23 +0000 Subject: [PATCH] add a task to install libselinux-python so ansible doesn't abort. --- tasks/cloud_setup_basic.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tasks/cloud_setup_basic.yml b/tasks/cloud_setup_basic.yml index 84a94257d6..62fdb8e496 100644 --- a/tasks/cloud_setup_basic.yml +++ b/tasks/cloud_setup_basic.yml @@ -1,4 +1,7 @@ --- +- name: install libselinux-python to make ansible happy + yum: state=installed name=libselinux-python + - name: update all command: yum -y update creates=/etc/sysconfig/global-update-applied register: updated