26 lines
400 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
package { "apache_python_package":
name => $apache::params::python_package,
2010-11-21 16:34:48 -05:00
ensure => present,
}
a2mod { "python": ensure => present, }
}