aboutsummaryrefslogtreecommitdiffstats
path: root/modules/apache/manifests/init.pp
diff options
context:
space:
mode:
authorMichael Scherer <misc@mageia.org>2012-01-06 16:14:10 +0000
committerMichael Scherer <misc@mageia.org>2012-01-06 16:14:10 +0000
commit6a037041d04a2e35af8340ebc1a3eb441deaaa53 (patch)
tree72f81554b5544702162336b078b8af71574bfebb /modules/apache/manifests/init.pp
parentf236649cf09e3326ac46fe1d15132fd5567a1774 (diff)
downloadpuppet-6a037041d04a2e35af8340ebc1a3eb441deaaa53.tar
puppet-6a037041d04a2e35af8340ebc1a3eb441deaaa53.tar.gz
puppet-6a037041d04a2e35af8340ebc1a3eb441deaaa53.tar.bz2
puppet-6a037041d04a2e35af8340ebc1a3eb441deaaa53.tar.xz
puppet-6a037041d04a2e35af8340ebc1a3eb441deaaa53.zip
place the variable near the only configuration file that use it
Diffstat (limited to 'modules/apache/manifests/init.pp')
-rw-r--r--modules/apache/manifests/init.pp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/apache/manifests/init.pp b/modules/apache/manifests/init.pp
index 7dd8e81b..19a47e98 100644
--- a/modules/apache/manifests/init.pp
+++ b/modules/apache/manifests/init.pp
@@ -1,7 +1,6 @@
class apache {
class base {
- $php_date_timezone = "UTC"
# number of time the log file are rotated before being removed
$httpdlogs_rotate = "24"
@@ -57,6 +56,7 @@ class apache {
}
class mod_php inherits base {
+ $php_date_timezone = "UTC"
package { "apache-mod_php":
ensure => installed
}