27 lines
500 B
ObjectPascal
Raw Normal View History

# Class: httpd::python
2010-11-21 16:34:48 -05:00
#
# This class installs Python for Apache
# Please use httpd::mod::wsgi for CentOS >= 7 as mod_python is officially deprecated.
2010-11-21 16:34:48 -05:00
#
# Parameters:
# - $python_package
2010-11-21 16:34:48 -05:00
#
# 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 => $httpd::params::mod_python_package,
2010-11-21 16:34:48 -05:00
}
httpd::mod { 'python': ensure => present, }
2010-11-21 16:34:48 -05:00
}