From ba1db2313af579e56b43c2a9d0494b2029b96f60 Mon Sep 17 00:00:00 2001 From: James Saint-Rossy Date: Thu, 28 Jul 2016 00:01:00 -0400 Subject: [PATCH] Removed check for ceph_stable_rh_storage_iso_install when removing rh_storage.repo as it is can be undefined and cause the playbook to fail. The check is redundant since the task will only remove the repo if it is present. --- purge-cluster.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/purge-cluster.yml b/purge-cluster.yml index 37333b344..499c52f27 100644 --- a/purge-cluster.yml +++ b/purge-cluster.yml @@ -451,5 +451,4 @@ path: /etc/yum.repos.d/rh_storage.repo state: absent when: - ansible_os_family == 'RedHat' and - ceph_stable_rh_storage_iso_install + ansible_os_family == 'RedHat'