Eric Shamow 42c636341f Changes to match style guide and pass puppet-lint without error
No substantive behavior changes - only spacing, line alignment,
quotation, etc.
2012-04-20 21:07:54 -07:00

26 lines
403 B
Puppet

# 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':
ensure => present,
name => $apache::params::python_package,
}
a2mod { 'python': ensure => present, }
}