puppet-httpd/pkg/puppetlabs-apache-0.0.2/manifests/php.pp

23 lines
291 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,
}
}