2011-07-15 15:27:14 -07:00

18 lines
291 B
Puppet

class apache::mod::python {
include apache
package { "python":
name => $operatingsystem ? {
centos => "mod_python",
default => "libapache2-mod-python",
},
ensure => installed,
require => Package["httpd"];
}
a2mod { "python": ensure => present; }
}