Reid Vandewiele d3d0d23d06 Re-enable local php class
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).
2012-02-29 20:17:54 -08:00

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,
}
}