Remove unnecesary spaces in log messages.
Spaces added by mistake in some log messages. Change-Id: I0e5d8a432349156c741cfc059a35db16dbc281c4
This commit is contained in:
@@ -421,8 +421,8 @@ class nova::api(
|
||||
# make sure we start apache before nova-api to avoid binding issues
|
||||
Service[$service_name] -> Service['nova-api']
|
||||
} else {
|
||||
fail('Invalid service_name. Either nova-api/openstack-nova-api for running \
|
||||
as a standalone service, or httpd for being run by a httpd server')
|
||||
fail("Invalid service_name. Either nova-api/openstack-nova-api for running \
|
||||
as a standalone service, or httpd for being run by a httpd server")
|
||||
}
|
||||
|
||||
nova::generic_service { 'api':
|
||||
|
@@ -185,18 +185,18 @@ class nova::compute (
|
||||
include ::nova::params
|
||||
|
||||
if $default_availability_zone {
|
||||
warning('The default_availability_zone parameter is deprecated and will be removed in a \
|
||||
future release. Use default_availability_zone parameter of nova class instead.')
|
||||
warning("The default_availability_zone parameter is deprecated and will be removed in a \
|
||||
future release. Use default_availability_zone parameter of nova class instead.")
|
||||
}
|
||||
|
||||
if $default_schedule_zone {
|
||||
warning('The default_schedule_zone parameter is deprecated and will be removed in a \
|
||||
future release. Use default_schedule_zone parameter of nova class instead.')
|
||||
warning("The default_schedule_zone parameter is deprecated and will be removed in a \
|
||||
future release. Use default_schedule_zone parameter of nova class instead.")
|
||||
}
|
||||
|
||||
if $internal_service_availability_zone {
|
||||
warning('The internal_service_availability_zone parameter is deprecated and will be \
|
||||
removed in a future release. Use internal_service_availability_zone parameter of nova class instead.')
|
||||
warning("The internal_service_availability_zone parameter is deprecated and will be \
|
||||
removed in a future release. Use internal_service_availability_zone parameter of nova class instead.")
|
||||
}
|
||||
|
||||
if $network_device_mtu {
|
||||
@@ -204,8 +204,8 @@ class nova::compute (
|
||||
}
|
||||
|
||||
if $compute_manager {
|
||||
warning('compute_manager is marked as deprecated in Nova but still needed when Ironic \
|
||||
is used. It will be removed once Nova removes it.')
|
||||
warning("compute_manager is marked as deprecated in Nova but still needed when Ironic \
|
||||
is used. It will be removed once Nova removes it.")
|
||||
}
|
||||
|
||||
$vcpu_pin_set_real = pick(join(any2array($vcpu_pin_set), ','), $::os_service_default)
|
||||
|
@@ -596,7 +596,7 @@ class nova(
|
||||
|
||||
if ! $nova_private_key_file {
|
||||
fail("Unable to determine name of private key file. Type specified was '${nova_private_key['type']}' \
|
||||
but should be one of: ssh-rsa, ssh-dsa, ssh-ecdsa.")
|
||||
but should be one of: ssh-rsa, ssh-dsa, ssh-ecdsa.")
|
||||
}
|
||||
|
||||
file { $nova_private_key_file:
|
||||
|
@@ -113,8 +113,9 @@ class nova::keystone::auth(
|
||||
|
||||
if $auth_name_v3 or $service_description_v3 or $service_name_v3 or
|
||||
$public_url_v3 or $internal_url_v3 or $admin_url_v3 or $configure_endpoint_v3 {
|
||||
warning('all parameters related to v3 API in nova::keystone::auth are \
|
||||
deprecated, have no effect and will be removed after Newton release.')
|
||||
|
||||
warning("all parameters related to v3 API in nova::keystone::auth are \
|
||||
deprecated, have no effect and will be removed after Newton release.")
|
||||
}
|
||||
|
||||
if $configure_endpoint {
|
||||
|
@@ -203,7 +203,7 @@ class nova::network(
|
||||
}
|
||||
default: {
|
||||
fail("Unsupported network manager: ${nova::network_manager} The supported network managers are \
|
||||
nova.network.manager.FlatManager, nova.network.FlatDHCPManager and nova.network.manager.VlanManager")
|
||||
nova.network.manager.FlatManager, nova.network.FlatDHCPManager and nova.network.manager.VlanManager")
|
||||
}
|
||||
}
|
||||
|
||||
|
@@ -134,7 +134,7 @@ class nova::params {
|
||||
}
|
||||
default: {
|
||||
fail("Unsupported osfamily: ${::osfamily} operatingsystem: ${::operatingsystem}, \
|
||||
module ${module_name} only support osfamily RedHat and Debian")
|
||||
module ${module_name} only support osfamily RedHat and Debian")
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user