Puppet Class: php::apache2

Defined in:
manifests/apache2.pp

Overview

Parameters:

  • apache2_ini_content (Any) (defaults to: undef)
  • apache2_ini_source (Any) (defaults to: undef)


1
2
3
4
5
6
# File 'manifests/apache2.pp', line 1

class php::apache2($apache2_ini_content = undef, $apache2_ini_source = undef) {
    require apache
    include php, php::apache2::install, php::apache2::config

    Class["php::config"] ~> Service["apache"]
}