Puppet Class: php::fpm::service

Defined in:
manifests/fpm/service.pp

Overview



1
2
3
4
5
6
7
8
9
# File 'manifests/fpm/service.pp', line 1

class php::fpm::service {
    service { $php::params::fpm_service_name:
        ensure     => running,
        hasstatus  => true,
        hasrestart => true,
        enable     => true,
        require    => Class["php::fpm::config"],
    }
}