Fix documentation for some Ganesha config variables

The config variables 'ganesha_export_dir' and
'ganesha_export_template_dir' featured the same
help string which was imprecise in both cases.

Co-Authored-By: Bill Owen <billowen@us.ibm.com>
Change-Id: I4c4871d3403198b8f22bc7097df693aa93a5eef0
This commit is contained in:
Csaba Henk 2015-01-23 02:08:30 +01:00
parent f16267d878
commit f103ff2f7b
1 changed files with 4 additions and 2 deletions

View File

@ -102,10 +102,12 @@ ganesha_opts = [
'(Ganesha module only.)'),
cfg.StrOpt('ganesha_export_dir',
default='$ganesha_config_dir/export.d',
help='Path to Ganesha export template. (Ganesha module only.)'),
help='Path to directory containing Ganesha export '
'configuration. (Ganesha module only.)'),
cfg.StrOpt('ganesha_export_template_dir',
default='/etc/manila/ganesha-export-templ.d',
help='Path to Ganesha export template. (Ganesha module only.)'),
help='Path to directory containing Ganesha export '
'block templates. (Ganesha module only.)'),
]
CONF = cfg.CONF