Puppet Class: apache::mod::data

Defined in:
manifests/mod/data.pp

Summary

Installs and configures `mod_data`.

Overview

Parameters:

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

    Version of Apache to install module on.

See Also:



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

class apache::mod::data (
  Optional[String] $apache_version = undef,
) {
  include apache
  $_apache_version = pick($apache_version, $apache::apache_version)
  if versioncmp($_apache_version, '2.3') < 0 {
    fail('mod_data is only available in Apache 2.3 and later')
  }
  ::apache::mod { 'data': }
}