puppet-httpd/manifests/python.pp
William Van Hevelingen 05fcec5f9c (#13073) Add missing puppet spec tests
This commit adds full puppet spec coverage
for all classes and defines.
2012-03-16 00:38:53 -07:00

26 lines
400 B
Puppet

# Class: apache::python
#
# This class installs Python for Apache
#
# Parameters:
# - $php_package
#
# Actions:
# - Install Apache Python package
#
# Requires:
#
# Sample Usage:
#
class apache::python {
include apache::params
include apache
package { "apache_python_package":
name => $apache::params::python_package,
ensure => present,
}
a2mod { "python": ensure => present, }
}