From: Zack Cerza Date: Mon, 6 Jul 2015 20:55:54 +0000 (-0600) Subject: Work around BZ#1234967 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F64%2Fhead;p=ceph-cm-ansible.git Work around BZ#1234967 We have some corrupt ceph-debuginfo packages that are causing yum to die with a UnicodeDecodeError. Use rpm to remove them for now. https://bugzilla.redhat.com/show_bug.cgi?id=1234967 Signed-off-by: Zack Cerza --- diff --git a/roles/testnode/tasks/yum/packages.yml b/roles/testnode/tasks/yum/packages.yml index f97e536d..5b7f10cd 100644 --- a/roles/testnode/tasks/yum/packages.yml +++ b/roles/testnode/tasks/yum/packages.yml @@ -1,4 +1,9 @@ --- +- name: Work around https://bugzilla.redhat.com/show_bug.cgi?id=1234967 + command: rpm -e ceph-debuginfo + tags: + - remove-ceph + - name: Ensure ceph packages are not present. yum: name: "{{ item }}"