From: Sam Lang Date: Fri, 1 Feb 2013 17:37:13 +0000 (-0600) Subject: task/ceph: Initialize disk_config maps X-Git-Tag: 1.1.0~2334 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=4ebd90eb81c6e93230895b7ac2c4545f4139f63b;p=teuthology.git task/ceph: Initialize disk_config maps The mount_options and fstype maps need to be initialized properly for later. Signed-off-by: Sam Lang --- diff --git a/teuthology/task/ceph.py b/teuthology/task/ceph.py index 6555641026..d785f6cb36 100644 --- a/teuthology/task/ceph.py +++ b/teuthology/task/ceph.py @@ -679,6 +679,9 @@ def cluster(ctx, config): ctx.disk_config = argparse.Namespace() ctx.disk_config.remote_to_roles_to_dev = remote_to_roles_to_devs ctx.disk_config.remote_to_roles_to_journals = remote_to_roles_to_journals + ctx.disk_config.remote_to_roles_to_dev_mount_options = {} + ctx.disk_config.remote_to_roles_to_dev_fstyp = {} + for id_ in teuthology.roles_of_type(roles_for_host, 'osd'): log.info(str(roles_to_journals))