summaryrefslogtreecommitdiff
path: root/manifests/envvars.pp
blob: a8659ba7d41eace79904a52cd23d39b0a1205e3e (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,
  }
}