General tidy of filesystem handling and ephemeral mountpoint stealing.

This commit is contained in:
James Page 2012-11-12 10:00:51 +00:00
parent 547ba59e7a
commit 8897c91af3
2 changed files with 15 additions and 6 deletions

View File

@ -47,6 +47,11 @@ def emit_cephconf():
def config_changed():
utils.juju_log('INFO', 'Begin config-changed hook.')
e_mountpoint = utils.config_get('ephemeral-unmount')
if (e_mountpoint != "" and
filesystem_mounted(e_mountpoint)):
subprocess.call(['umount', e_mountpoint])
if ceph.is_bootstrapped():
utils.juju_log('INFO', 'ceph bootstrapped, rescanning disks')
emit_cephconf()
@ -102,10 +107,6 @@ def osdize(dev):
'Path {} does not exist - bailing'.format(dev))
return
e_mountpoint = utils.config_get('ephemeral-unmount')
if e_mountpoint != "":
subprocess.call(['umount', e_mountpoint])
if (ceph.is_osd_disk(dev) and not
reformat_osd()):
utils.juju_log('INFO',
@ -113,7 +114,7 @@ def osdize(dev):
.format(dev))
return
if subprocess.call(['grep', '-wqs', dev + '1', '/proc/mounts']) == 0:
if device_mounted(dev):
utils.juju_log('INFO',
'Looks like {} is in use, skipping.'.format(dev))
return
@ -121,6 +122,14 @@ def osdize(dev):
subprocess.call(['ceph-disk-prepare', dev])
def device_mounted(dev):
return subprocess.call(['grep', '-wqs', dev + '1', '/proc/mounts']) == 0
def filesystem_mounted(fs):
return subprocess.call(['grep', '-wqs', fs, '/proc/mounts']) == 0
def mon_relation():
utils.juju_log('INFO', 'Begin mon-relation hook.')

View File

@ -1 +1 @@
6
7