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).
This commit is contained in:
Reid Vandewiele 2012-02-29 20:15:36 -08:00
parent c3b7dccd5d
commit d3d0d23d06
1 changed files with 4 additions and 5 deletions

View File

@ -13,10 +13,9 @@
# Sample Usage:
#
class apache::php {
include php
# include apache::params
include apache::params
# package { $apache::params::php_package:
# ensure => present,
# }
package { $apache::params::php_package:
ensure => present,
}
}