30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61 
       | 
      
        # File 'manifests/mod/geoip.pp', line 30
class apache::mod::geoip (
  Boolean $enable                              = false,
  Stdlib::Absolutepath $db_file                = '/usr/share/GeoIP/GeoIP.dat',
  String $flag                                 = 'Standard',
  String $output                               = 'All',
  Optional[String] $enable_utf8                = undef,
  Optional[String] $scan_proxy_headers         = undef,
  Optional[String] $scan_proxy_header_field    = undef,
  Optional[String] $use_last_xforwarededfor_ip = undef,
) {
  include apache
  ::apache::mod { 'geoip': }
  # Template uses:
  # - enable
  # - db_file
  # - flag
  # - output
  # - enable_utf8
  # - scan_proxy_headers
  # - scan_proxy_header_field
  # - use_last_xforwarededfor_ip
  file { 'geoip.conf':
    ensure  => file,
    path    => "${apache::mod_dir}/geoip.conf",
    mode    => $apache::file_mode,
    content => template('apache/mod/geoip.conf.erb'),
    require => Exec["mkdir ${apache::mod_dir}"],
    before  => File[$apache::mod_dir],
    notify  => Class['apache::service'],
  }
}
       |