From 5235fc18a0f0dd3f4fc753bf683b6622f7dc540a Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Fri, 15 Feb 2013 15:17:18 -0800 Subject: [PATCH] ceph: fix purge Signed-off-by: Sage Weil --- teuthology/task/ceph.py | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/teuthology/task/ceph.py b/teuthology/task/ceph.py index 88b859a7bccca..b881a5266b59e 100644 --- a/teuthology/task/ceph.py +++ b/teuthology/task/ceph.py @@ -230,13 +230,6 @@ def _update_deb_package_list_and_install(remote, debs, branch): def install_debs(ctx, debs, branch): """ installs Debian packages. - The following items were added to the config yaml file: - - install-deb: true - deb-branch: argonaut - - It is probably possible to get the deb-branch value from somewhere else, - it was added for expediency. """ log.info("Installing ceph debian packages: {debs}".format(debs=', '.join(debs))) with parallel() as p: @@ -257,6 +250,7 @@ def _remove_deb(remote, debs): args=[ 'sudo', 'apt-get', '-y', '--force-yes', 'purge', + d, ], stdout=StringIO(), ) -- 2.39.5