Avoid restarting dbus service

Restarting the dbus service is not necessary and is now triggering
a bug[1] in systemd-logind in CentOS Stream 9.

[1] https://issues.redhat.com/browse/RHEL-21004

Conflicts:
	manifests/compute/libvirt/services.pp

Change-Id: Iae47044d7a58ba6316ff5f4b5ffdc01b03eddeba
(cherry picked from commit 8d88b7bf4f)
(cherry picked from commit 63030d6837)
(cherry picked from commit fb4e7883f8)
This commit is contained in:
Takashi Kajinami
2024-01-09 00:16:29 +09:00
parent a1b4066ef7
commit 997172e801

View File

@@ -115,11 +115,14 @@ class nova::compute::libvirt::services (
# messagebus # messagebus
if($::osfamily == 'RedHat') { if($::osfamily == 'RedHat') {
# NOTE(tkajinam): Do not use libvirt-service tag to avoid unnecessary
# restart.
service { 'messagebus': service { 'messagebus':
ensure => running, ensure => running,
enable => true, enable => true,
name => $::nova::params::messagebus_service_name, name => $::nova::params::messagebus_service_name,
tag => 'libvirt-service', require => Anchor['nova::service::begin'],
before => Anchor['nova::service::end'],
} }
} }
} }