Puppet Class: apache::mod::python

Defined in:
manifests/mod/python.pp

Summary

Installs and configures `mod_python`.

Overview

Parameters:

  • loadfile_name (Optional[String]) (defaults to: undef)

    Sets the name of the configuration file that is used to load the python module.

See Also:



9
10
11
12
13
14
15
16
# File 'manifests/mod/python.pp', line 9

class apache::mod::python (
  Optional[String] $loadfile_name = undef,
) {
  include apache
  ::apache::mod { 'python':
    loadfile_name => $loadfile_name,
  }
}