Fix new lint errors

Fix "WARNING: there should be a single space before '=>'" newly
detected by new puppet-lint.

Change-Id: I2da62f34fbd31c837cbccd0b9cdb2c77dbdc5b82
This commit is contained in:
Takashi Kajinami
2025-03-09 01:17:19 +09:00
parent b0fe8da29d
commit 00731a33c3
4 changed files with 7 additions and 7 deletions

View File

@@ -337,8 +337,8 @@ class nova::compute (
}
nova_config {
'compute/cpu_shared_set': value => join(any2array($cpu_shared_set), ',');
'compute/cpu_dedicated_set': value => join(any2array($cpu_dedicated_set), ',');
'compute/cpu_shared_set': value => join(any2array($cpu_shared_set), ',');
'compute/cpu_dedicated_set': value => join(any2array($cpu_dedicated_set), ',');
}
if !empty($neutron_physnets_numa_nodes_mapping) {

View File

@@ -578,9 +578,9 @@ class nova(
}
nova_config {
'vif_plug_ovs/ovsdb_connection': value => $ovsdb_connection;
'notifications/notification_format': value => $notification_format;
'notifications/notify_on_state_change': value => $notify_on_state_change;
'vif_plug_ovs/ovsdb_connection': value => $ovsdb_connection;
'notifications/notification_format': value => $notification_format;
'notifications/notify_on_state_change': value => $notify_on_state_change;
# Following may need to be broken out to different nova services
'DEFAULT/state_path': value => $state_path;
'DEFAULT/service_down_time': value => $service_down_time;

View File

@@ -239,7 +239,7 @@ class nova::keystone::authtoken(
keystone::resource::authtoken {
'nova_config':
* => $params;
* => $params;
default:
username => $username,
password => $password,

View File

@@ -51,7 +51,7 @@ class nova::metadata(
}
} else {
nova_config {
'neutron/service_metadata_proxy': value => false;
'neutron/service_metadata_proxy': value => false;
'neutron/metadata_proxy_shared_secret': ensure => absent;
}
}