Puppet Class: apache::mod::python
- Defined in:
- puppet/modules/apache/manifests/mod/python.pp
Overview
Class: apache::mod::python
3 4 5 6 7 8 |
# File 'puppet/modules/apache/manifests/mod/python.pp', line 3
class apache::mod::python {
package { 'libapache2-mod-python': }
apache::mod_conf { 'python':
require => Package['libapache2-mod-python'],
}
}
|