blob: 0125bcb1cb55423684fe396f2ef2d35dbeb36d60 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
 | class apache::envvars(
  $source = undef
) {
  file { "/etc/apache2/envvars":
    ensure  => present,
    owner   => root,
    group   => root,
    mode    => 0644,
    notify  => Service["apache"],
    source  => $source,
  }
}
 |