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

14 lines
233 B
Puppet

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