From 696d39de94f08d9d6fac7dcf59665d4f62f631da Mon Sep 17 00:00:00 2001 From: Alfredo Deza Date: Fri, 14 Feb 2014 10:49:34 -0500 Subject: [PATCH] uninstall ceph-release and clean cache in centos Signed-off-by: Alfredo Deza --- ceph_deploy/hosts/centos/uninstall.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ceph_deploy/hosts/centos/uninstall.py b/ceph_deploy/hosts/centos/uninstall.py index 4d17133..ff309f7 100644 --- a/ceph_deploy/hosts/centos/uninstall.py +++ b/ceph_deploy/hosts/centos/uninstall.py @@ -4,9 +4,12 @@ from ceph_deploy.util import pkg_managers def uninstall(conn, purge=False): packages = [ 'ceph', + 'ceph-release', ] pkg_managers.yum_remove( conn, packages, ) + + pkg_managers.yum_clean(conn) -- 2.47.3