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

15 lines
242 B
Puppet

class apache::mod::python {
include apache
package { 'mod_python_package':
ensure => installed,
name => $apache::params::mod_python_package,
require => Package['httpd'];
}
a2mod { 'python': ensure => present; }
}