module-nginx/manifests/service.pp

48 lines
949 B
ObjectPascal
Raw Normal View History

2011-06-07 01:05:27 +02:00
# Class: nginx::service
#
# This module manages NGINX service management and vhost rebuild
#
# Parameters:
#
# There are no default parameters for this class.
2011-06-07 01:05:27 +02:00
#
# Actions:
#
# Requires:
#
# Sample Usage:
#
# This class file is not called directly
class nginx::service(
$configtest_enable = $nginx::configtest_enable,
$service_restart = $nginx::service_restart,
$service_ensure = $nginx::service_ensure,
) {
2014-03-30 13:23:43 +02:00
2014-03-03 19:23:41 +01:00
$service_enable = $service_ensure ? {
running => true,
absent => false,
stopped => false,
'undef' => undef,
2014-03-03 19:23:41 +01:00
default => true,
}
2014-01-06 22:27:57 +01:00
if $service_ensure == 'undef' {
$service_ensure_real = undef
} else {
$service_ensure_real = $service_ensure
}
2013-05-08 14:15:42 +02:00
service { 'nginx':
ensure => $service_ensure_real,
2014-03-03 19:23:41 +01:00
enable => $service_enable,
2011-05-25 04:20:48 +02:00
hasstatus => true,
hasrestart => true,
2011-05-25 04:20:48 +02:00
}
if $configtest_enable == true {
2013-05-08 14:15:42 +02:00
Service['nginx'] {
restart => $service_restart,
}
}
}