view modules/apache/manifests/mod/python.pp @ 348:11d940c9014e

Update Firewall module to try and fix quoting string issue It doesn't, but being up-to-date is good
author IBBoard <dev@ibboard.co.uk>
date Wed, 23 Sep 2020 20:43:20 +0100
parents d9352a684e62
children b8d6ada284dd
line wrap: on
line source

# @summary
#   Installs and configures `mod_python`.
# 
# @param loadfile_name
#   Sets the name of the configuration file that is used to load the python module.
# 
# @see https://github.com/grisha/mod_python for additional documentation.
#
class apache::mod::python (
  Optional[String] $loadfile_name = undef,
) {
  include ::apache
  ::apache::mod { 'python':
    loadfile_name => $loadfile_name,
  }
}