23 lines
322 B
ObjectPascal
Raw Normal View History

# Class: httpd::php
2010-09-01 18:01:04 -04:00
#
# This class installs PHP for Apache
#
# Parameters:
# - $php_package
#
# Actions:
# - Install Apache PHP package
#
# Requires:
#
# Sample Usage:
#
class httpd::php {
include httpd::params
2010-09-01 18:01:04 -04:00
package { 'apache_php_package':
ensure => present,
name => $httpd::params::php_package,
}
2010-09-01 18:01:04 -04:00
}