]> review.fuel-infra Code Review - openstack-build/cinder-build.git/commitdiff
Update help strings
authorAndreas Jaeger <aj@suse.de>
Mon, 21 Jul 2014 19:42:14 +0000 (21:42 +0200)
committerAndreas Jaeger <aj@suse.de>
Sat, 9 Aug 2014 18:27:53 +0000 (20:27 +0200)
Fix capitalization of help strings to make help strings consistent.

Change-Id: I04341c31cbb21b01229916cef7bc8ccb199614a2

cinder/exception.py
cinder/volume/drivers/emc/emc_vnx_cli.py
cinder/volume/drivers/hds/iscsi.py
cinder/volume/drivers/hds/nfs.py
etc/cinder/cinder.conf.sample

index fcfd4ad951c809a3ff669eb1b54b6b9da5bf845b..c383d52d60bbab57dfedd81475757a61d9762444 100644 (file)
@@ -37,7 +37,7 @@ LOG = logging.getLogger(__name__)
 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
index ca13262090dab3e6c861ca18f042a46a131682da..bad73e0cd9b5ca011e1068b1e9571d41cec33ec6 100644 (file)
@@ -67,7 +67,7 @@ loc_opts = [
                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. '
index fd287ac97ee0794923e7f167605101eaeb325d93..2a604d24501fc84447b544da08b285dce2806abc 100644 (file)
@@ -38,7 +38,7 @@ LOG = logging.getLogger(__name__)
 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)
index c93ddfdcdcaa00c62d9777896878f7e183204583..5fdea27c076631c7cd427c0d4076fd4e2f9d8ff6 100644 (file)
@@ -41,7 +41,7 @@ LOG = logging.getLogger(__name__)
 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)
index 25c4dcb67714b2a3c4a8f190465a501e707aeee5..4e134af423d9494825e5b6e03725feaa3b0a1bec 100644 (file)
 # 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