29 lines
497 B
ObjectPascal
Raw Normal View History

# Class: httpd::mod::python
#
# This class installs Python for Apache
# Please use httpd::mod::wsgi for CentOS >= 7 as mod_python is officially deprecated.
#
# Parameters:
#
# Actions:
# - Install Apache Python package
#
# Requires:
#
# Sample Usage:
#
class httpd::mod::python {
include httpd
2011-07-15 15:27:14 -07:00
package { 'mod_python_package':
2011-07-15 15:27:14 -07:00
ensure => installed,
name => $httpd::params::mod_python_package,
require => Package['httpd'];
2011-07-15 15:27:14 -07:00
}
httpd::mod { 'python': ensure => present; }
2011-07-15 15:27:14 -07:00
}