Puppet Class: php::fpm::install
- Defined in:
- manifests/fpm/install.pp
Overview
1 2 3 4 5 6 7 8 9 10 |
# File 'manifests/fpm/install.pp', line 1
class php::fpm::install ($ensure = present,) {
include apt
include php::fpm::service
package { "php5-fpm":
ensure => installed,
require => Class["apt::update"],
notify => Class["php::fpm::service"]
}
}
|