05fcec5f9c
This commit adds full puppet spec coverage for all classes and defines.
26 lines
400 B
Puppet
26 lines
400 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":
|
|
name => $apache::params::python_package,
|
|
ensure => present,
|
|
}
|
|
a2mod { "python": ensure => present, }
|
|
|
|
}
|