26 lines
403 B
ObjectPascal
Raw Normal View History

2010-11-21 16:34:48 -05:00
# 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
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
}
a2mod { 'python': ensure => present, }
2010-11-21 16:34:48 -05:00
}