Files
puppet-nova/manifests/generic_service.pp
Derek Higgins f7830b7684 Set hasstatus => true for nova services
Fix bug 1170671

notifies to nova services on RHEL were not causing a restart of the service

Change-Id: I5fc91e1c519425e96677796d9de5222ab9d7f105
2013-04-19 09:02:03 -04:00

58 lines
1.4 KiB
Puppet

#
# This class implements basic nova services.
# It is introduced to attempt to consolidate
# common code.
#
# It also allows users to specify ad-hoc services
# as needed
#
#
# This define creates a service resource with title nova-${name} and
# conditionally creates a package resource with title nova-${name}
#
define nova::generic_service(
$package_name,
$service_name,
$enabled = false,
$ensure_package = 'present'
) {
include nova::params
if $enabled {
$service_ensure = 'running'
} else {
$service_ensure = 'stopped'
}
$nova_title = "nova-${name}"
# ensure that the service is only started after
# all nova config entries have been set
Exec['post-nova_config'] ~> Service<| title == $nova_title |>
# ensure that the service has only been started
# after the initial db sync
Exec<| title == 'nova-db-sync' |> ~> Service<| title == $nova_title |>
# I need to mark that ths package should be
# installed before nova_config
if ($package_name) {
package { $nova_title:
name => $package_name,
ensure => $ensure_package,
notify => Service[$nova_title],
}
}
if ($service_name) {
service { $nova_title:
name => $service_name,
ensure => $service_ensure,
enable => $enabled,
hasstatus => true,
require => [Package['nova-common'], Package[$nova_title]],
}
}
}