
Previously, commit 8a56ee91 removed local control of the apache::php_package management in favor of "include php". However, no dependency was added to the Modulefile and to date the php module referenced in apache::php has not been released. This commit reinstates apache local class management of php to the apache::php class (at least until such time as the puppetlabs-php module is released).
22 lines
290 B
Puppet
22 lines
290 B
Puppet
# Class: apache::php
|
|
#
|
|
# This class installs PHP for Apache
|
|
#
|
|
# Parameters:
|
|
# - $php_package
|
|
#
|
|
# Actions:
|
|
# - Install Apache PHP package
|
|
#
|
|
# Requires:
|
|
#
|
|
# Sample Usage:
|
|
#
|
|
class apache::php {
|
|
include apache::params
|
|
|
|
package { $apache::params::php_package:
|
|
ensure => present,
|
|
}
|
|
}
|