18 lines
291 B
ObjectPascal
18 lines
291 B
ObjectPascal
![]() |
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; }
|
||
|
|
||
|
}
|
||
|
|
||
|
|