6d2b3f4d04
the validate_legacy function is marked for deprecation in v9.0.0 from puppetlabs-stdlib. Change-Id: I0808e8a311121e281b20f7493ae6bde6ef0a6929
67 lines
2.0 KiB
Puppet
67 lines
2.0 KiB
Puppet
# = Class: zaqar::server
|
|
#
|
|
# This class manages the Zaqar server.
|
|
#
|
|
# [*enabled*]
|
|
# (Optional) Service enable state for zaqar-server.
|
|
# Defaults to true.
|
|
#
|
|
# [*manage_service*]
|
|
# (Optional) Whether the service is managed by this puppet class.
|
|
# Defaults to true.
|
|
#
|
|
# [*service_name*]
|
|
# (optional) Name of the service that will be providing the
|
|
# server functionality of zaqar-server
|
|
# If the value is 'httpd', this means zaqar-server will be a web
|
|
# service, and you must use another class to configure that
|
|
# web service. For example, use class { 'zaqar::wsgi::apache'...}
|
|
# to make zaqar-server be a web app using apache mod_wsgi.
|
|
# Defaults to '$::zaqar::params::service_name'
|
|
|
|
#
|
|
class zaqar::server(
|
|
Boolean $manage_service = true,
|
|
Boolean $enabled = true,
|
|
$service_name = $::zaqar::params::service_name,
|
|
) inherits zaqar::params {
|
|
|
|
include zaqar
|
|
include zaqar::deps
|
|
include zaqar::params
|
|
include zaqar::policy
|
|
|
|
if $manage_service {
|
|
if $enabled {
|
|
$ensure = 'running'
|
|
} else {
|
|
$ensure = 'stopped'
|
|
}
|
|
|
|
if $service_name == $::zaqar::params::service_name {
|
|
service { $::zaqar::params::service_name:
|
|
ensure => $ensure,
|
|
name => $::zaqar::params::service_name,
|
|
enable => $enabled,
|
|
hasstatus => true,
|
|
tag => 'zaqar-service',
|
|
}
|
|
|
|
} elsif $service_name == 'httpd' {
|
|
service { $::zaqar::params::service_name:
|
|
ensure => 'stopped',
|
|
name => $::zaqar::params::service_name,
|
|
enable => false,
|
|
tag => ['zaqar-service'],
|
|
}
|
|
|
|
# we need to make sure zaqar-server is stopped before trying to start apache
|
|
Service[$::zaqar::params::service_name] -> Service[$service_name]
|
|
Service <| title == 'httpd' |> { tag +> 'zaqar-service' }
|
|
} else {
|
|
fail("Invalid service_name. Either zaqar-server/openstack-zaqar for \
|
|
running as a standalone service, or httpd for being run by a httpd server")
|
|
}
|
|
}
|
|
}
|