Fix capitalization of help strings to make help strings consistent.
Change-Id: I04341c31cbb21b01229916cef7bc8ccb199614a2
exc_log_opts = [
cfg.BoolOpt('fatal_exception_format_errors',
default=False,
- help='make exception message format errors fatal'),
+ help='Make exception message format errors fatal.'),
]
CONF = cfg.CONF
help='VNX secondary SP IP Address.'),
cfg.IntOpt('default_timeout',
default=60 * 24 * 365,
- help='Default Time Out For CLI operations in minutes. '
+ help='Default timeout for CLI operations in minutes. '
'For example, LUN migration is a typical long '
'running operation, which depends on the LUN size and '
'the load of the array. '
iSCSI_OPTS = [
cfg.StrOpt('hds_hnas_iscsi_config_file',
default='/opt/hds/hnas/cinder_iscsi_conf.xml',
- help='configuration file for HDS iSCSI cinder plugin')]
+ help='Configuration file for HDS iSCSI cinder plugin')]
CONF = cfg.CONF
CONF.register_opts(iSCSI_OPTS)
NFS_OPTS = [
cfg.StrOpt('hds_hnas_nfs_config_file',
default='/opt/hds/hnas/cinder_nfs_conf.xml',
- help='configuration file for HDS NFS cinder plugin'), ]
+ help='Configuration file for HDS NFS cinder plugin'), ]
CONF = cfg.CONF
CONF.register_opts(NFS_OPTS)
# Options defined in cinder.exception
#
-# make exception message format errors fatal (boolean value)
+# Make exception message format errors fatal. (boolean value)
#fatal_exception_format_errors=false
# VNX secondary SP IP Address. (string value)
#san_secondary_ip=<None>
-# Default Time Out For CLI operations in minutes. For example,
+# Default timeout for CLI operations in minutes. For example,
# LUN migration is a typical long running operation, which
# depends on the LUN size and the load of the array. An upper
# bound in the specific deployment can be set to avoid
# Options defined in cinder.volume.drivers.hds.iscsi
#
-# configuration file for HDS iSCSI cinder plugin (string
+# Configuration file for HDS iSCSI cinder plugin (string
# value)
#hds_hnas_iscsi_config_file=/opt/hds/hnas/cinder_iscsi_conf.xml
# Options defined in cinder.volume.drivers.hds.nfs
#
-# configuration file for HDS NFS cinder plugin (string value)
+# Configuration file for HDS NFS cinder plugin (string value)
#hds_hnas_nfs_config_file=/opt/hds/hnas/cinder_nfs_conf.xml