From: James Saint-Rossy Date: Thu, 28 Jul 2016 04:01:00 +0000 (-0400) Subject: Removed check for ceph_stable_rh_storage_iso_install when removing rh_storage.repo... X-Git-Tag: v1.0.6~43^2 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=ba1db2313af579e56b43c2a9d0494b2029b96f60;p=ceph-ansible.git 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. --- 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'