--- puppet/modules/apache/manifests/init.pp 2010/11/04 17:42:21 96 +++ puppet/modules/apache/manifests/init.pp 2010/11/05 00:12:10 117 @@ -2,6 +2,7 @@ class base { package { "apache-mpm-prefork": + alias => apache, ensure => installed } @@ -10,6 +11,17 @@ ensure => running, subscribe => [ Package['apache-mpm-prefork'] ], } + + file { "customization.conf": + ensure => present, + path => "/etc/httpd/conf/customization.conf", + content => template("apache/customization.conf"), + require => Package["apache"], + notify => Service["apache"], + owner => root, + group => root, + mode => 644, + } } class mod_php inherits base {