From 4ebd90eb81c6e93230895b7ac2c4545f4139f63b Mon Sep 17 00:00:00 2001 From: Sam Lang Date: Fri, 1 Feb 2013 11:37:13 -0600 Subject: [PATCH] task/ceph: Initialize disk_config maps The mount_options and fstype maps need to be initialized properly for later. Signed-off-by: Sam Lang --- teuthology/task/ceph.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/teuthology/task/ceph.py b/teuthology/task/ceph.py index 6555641026eb9..d785f6cb363e3 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)) -- 2.39.5