Puppet Class: apache::mod::data

Defined in:
manifests/mod/data.pp

Overview

Parameters:

  • apache_version (Any) (defaults to: undef)


1
2
3
4
5
6
7
8
9
10
# File 'manifests/mod/data.pp', line 1

class apache::mod::data (
  $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': }
}