18 lines
291 B
Puppet
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; }
|
|
|
|
}
|
|
|
|
|