# Class: apache::config # # Configures apache # # Actions: # - copies /etc/httpd/conf/httpd.conf from the master # # Sources: # - httpd.conf comes from the files section of this module and can be overridden using # httpd.conf.$fqdn class apache::config { file{"/etc/httpd/conf/httpd.conf": owner => root, group => root, source => ["puppet://puppet/apache/httpd.conf.${fqdn}", "puppet://puppet/apache/httpd.conf"], require => Package["httpd"], notify => Service["httpd"], } }