From: Silvio Rhatto Date: Thu, 28 Feb 2013 03:07:32 +0000 (-0300) Subject: Adding apache::envvars X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=68bfbe8ca1fb64ecfe51b963248b198f11c75764;p=puppet-apache.git Adding apache::envvars --- diff --git a/manifests/envvars.pp b/manifests/envvars.pp new file mode 100644 index 0000000..a8659ba --- /dev/null +++ b/manifests/envvars.pp @@ -0,0 +1,12 @@ +class apache::envvars( + source = undef +) { + file { "/etc/apache2/envvars": + ensure => present, + owner => root, + group => root, + mode => 0644, + notify => Service["apache"], + source => $source, + } +}