1
0
mirror of https://github.com/ceph/ceph synced 2025-04-01 23:02:17 +00:00

Merge pull request from ceph/wip-8850

tell us if you are really not running any more
This commit is contained in:
Zack Cerza 2014-07-30 14:31:27 -06:00
commit 094cd5b3ba

View File

@ -347,6 +347,17 @@ def build_ceph_cluster(ctx, config):
ctx.cluster.run(args=['sudo', 'stop', 'ceph-all', run.Raw('||'),
'sudo', 'service', 'ceph', 'stop' ])
# Are you really not running anymore?
# try first with the init tooling
ctx.cluster.run(args=['sudo', 'status', 'ceph-all', run.Raw('||'),
'sudo', 'service', 'status', 'ceph-all'])
# and now just check for the processes themselves, as if upstart/sysvinit
# is lying to us
ctx.cluster.run(args=['sudo', 'ps', 'aux', run.Raw('|'),
'grep', '-v', 'grep', run.Raw('|'),
'grep', 'ceph'])
if ctx.archive is not None:
# archive mon data, too
log.info('Archiving mon data...')