File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -85,12 +85,12 @@ function configure_database_mysql {
8585 sudo mysqladmin -u root password $DATABASE_PASSWORD || true
8686 fi
8787
88- # Update the DB to give user ‘ $DATABASE_USER’@’%’ full control of the all databases:
88+ # Update the DB to give user ' $DATABASE_USER'@'%' full control of the all databases:
8989 sudo mysql -uroot -p$DATABASE_PASSWORD -h127.0.0.1 -e " GRANT ALL PRIVILEGES ON *.* TO '$DATABASE_USER '@'%' identified by '$DATABASE_PASSWORD ';"
9090
9191 # Now update ``my.cnf`` for some local needs and restart the mysql service
9292
93- # Change ‘ bind-address’ from localhost (127.0.0.1) to any (::) and
93+ # Change bind-address from localhost (127.0.0.1) to any (::) and
9494 # set default db type to InnoDB
9595 sudo bash -c " source $TOP_DIR /functions && \
9696 iniset $my_conf mysqld bind-address " $SERVICE_LISTEN_ADDRESS " && \
Original file line number Diff line number Diff line change @@ -97,7 +97,7 @@ SWIFT_EXTRAS_MIDDLEWARE_LAST=${SWIFT_EXTRAS_MIDDLEWARE_LAST:-}
9797# the beginning of the pipeline, before authentication middlewares.
9898SWIFT_EXTRAS_MIDDLEWARE_NO_AUTH=${SWIFT_EXTRAS_MIDDLEWARE_NO_AUTH:- crossdomain}
9999
100- # The ring uses a configurable number of bits from a path’ s MD5 hash as
100+ # The ring uses a configurable number of bits from a path' s MD5 hash as
101101# a partition index that designates a device. The number of bits kept
102102# from the hash is known as the partition power, and 2 to the partition
103103# power indicates the partition count. Partitioning the full MD5 hash
Original file line number Diff line number Diff line change @@ -386,7 +386,7 @@ function configure_tempest {
386386 # and is now the default behavior.
387387 iniset $TEMPEST_CONFIG compute-feature-enabled allow_duplicate_networks ${NOVA_ALLOW_DUPLICATE_NETWORKS:- True}
388388
389- # Network
389+ # Network
390390 iniset $TEMPEST_CONFIG network api_version 2.0
391391 iniset $TEMPEST_CONFIG network tenant_networks_reachable " $tenant_networks_reachable "
392392 iniset $TEMPEST_CONFIG network public_network_id " $public_network_id "
@@ -468,7 +468,7 @@ function configure_tempest {
468468 if [[ ! -z " $DISABLE_VOLUME_API_EXTENSIONS " ]]; then
469469 # Enabled extensions are either the ones explicitly specified or those available on the API endpoint
470470 volume_api_extensions=${VOLUME_API_EXTENSIONS:- $(iniget $tmp_cfg_file volume-feature-enabled api_extensions | tr -d " " )}
471- # Remove disabled extensions
471+ # Remove disabled extensions
472472 volume_api_extensions=$( remove_disabled_extensions $volume_api_extensions $DISABLE_VOLUME_API_EXTENSIONS )
473473 fi
474474 iniset $TEMPEST_CONFIG volume-feature-enabled api_extensions $volume_api_extensions
You can’t perform that action at this time.
0 commit comments