From fbdeca90620e23c4d2daf0b4ae119eb12157f46e Mon Sep 17 00:00:00 2001 From: Zack Cerza Date: Mon, 6 Jul 2015 14:55:54 -0600 Subject: [PATCH] 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 --- roles/testnode/tasks/yum/packages.yml | 5 +++++ 1 file changed, 5 insertions(+) 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 }}" -- 2.47.3