26 lines
403 B
ObjectPascal
Raw Normal View History

# Class: httpd::python
2010-11-21 16:34:48 -05:00
#
# This class installs Python for Apache
#
# Parameters:
# - $php_package
#
# Actions:
# - Install Apache Python package
#
# Requires:
#
# Sample Usage:
#
class httpd::python {
include httpd::params
include httpd
2010-11-21 16:34:48 -05:00
package { 'apache_python_package':
2010-11-21 16:34:48 -05:00
ensure => present,
name => $apache::params::python_package,
2010-11-21 16:34:48 -05:00
}
httpd_mod { 'python': ensure => present, }
2010-11-21 16:34:48 -05:00
}