Puppet Class: nginx::service
- Defined in:
- manifests/service.pp
Summary
Manage NGINX service managementOverview
3 4 5 6 7 8 9 10 11 12 13 14 |
# File 'manifests/service.pp', line 3
class nginx::service {
assert_private()
if $nginx::service_manage {
service { $nginx::service_name:
ensure => $nginx::service_ensure,
enable => $nginx::service_enable,
flags => $nginx::service_flags,
restart => $nginx::service_restart,
}
}
}
|