Remove cleanup for controller upgrade

How did it sneaked back in?!
This commit is contained in:
Yuriy Taraday 2015-07-30 10:43:22 +03:00
parent 83a807d4ad
commit 484d3df594
1 changed files with 0 additions and 9 deletions

View File

@ -47,15 +47,6 @@ class ControllerUpgrade(object):
tasks_helpers.skip_tasks(tasks)
env.update_deployment_tasks(tasks)
@staticmethod
def cleanup(node, seed_env):
ssh.call(
["stop", "ceph-mon", "id=node-%s" % (node.data['id'],)],
node=node,
)
ssh.call(["/etc/init.d/ceph", "start", "mon"], node=node)
# TODO: use stevedore for this
role_upgrade_handlers = {
'controller': ControllerUpgrade,