]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph-deploy.git/commitdiff
uninstall ceph-release and clean cache in centos 163/head
authorAlfredo Deza <alfredo.deza@inktank.com>
Fri, 14 Feb 2014 15:49:34 +0000 (10:49 -0500)
committerAlfredo Deza <alfredo.deza@inktank.com>
Fri, 14 Feb 2014 15:49:34 +0000 (10:49 -0500)
Signed-off-by: Alfredo Deza <alfredo.deza@inktank.com>
ceph_deploy/hosts/centos/uninstall.py

index 4d17133c0c85fabd18ab22ee714d73cd366ab5a7..ff309f76be614cdb1a516ddbd787b34e06acb414 100644 (file)
@@ -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)