Fix httpd::python.

While writing acceptance tests for puppet-httpd we noticed that the
manifest of httpd::python is not working on Ubuntu Trusty.

The httpd::python manifest was using a non-declared
$apache::params::mod_python_package instead of
$httpd::params::mod_python_package

Change-Id: I4db9298aba7da90a017527b2fb29dcd17af28efc
Co-Authored-By: Danilo Ramalho <dramalho@thoughtworks.com>
This commit is contained in:
Bruno Tavares 2015-09-22 15:00:28 -03:00
parent 69310a65cb
commit a6f2016567
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ class httpd::python {
package { 'apache_python_package':
ensure => present,
name => $apache::params::mod_python_package,
name => $httpd::params::mod_python_package,
}
httpd_mod { 'python': ensure => present, }