fuel-plugin-lma-infrastruct.../deployment_scripts/puppet/modules/nagios/manifests/server_service.pp
Swann Croiset 2bae4e709e Add tests for Puppet modules
These tests run lint, syntax checker and simple Puppet class tests.
In the mean time this change fixes syntax warnings

Change-Id: I474332ec965689a4e71ad9a235121e01faf5a24c
2015-08-25 14:53:49 +02:00

42 lines
1.2 KiB
Puppet

# Copyright 2015 Mirantis, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
#
# Class: nagios::server_service
#
# Manage the Nagios daemon
#
# Example:
# myresource { 'foo':
# notify => Class['nagios::server_service']
#}
#
class nagios::server_service(
$service_name = $nagios::params::nagios_service_name,
$service_ensure = 'running',
$service_enable = true,
$service_manage = true,
) inherits nagios::params {
validate_bool($service_enable)
validate_bool($service_manage)
if $service_manage {
service {$service_name:
ensure => $service_ensure,
require => Package[$service_name],
enable => $service_enable,
}
}
}