/[adm]/puppet/modules/apache/manifests/init.pp
ViewVC logotype

Diff of /puppet/modules/apache/manifests/init.pp

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 96 by misc, Thu Nov 4 17:42:21 2010 UTC revision 117 by misc, Fri Nov 5 00:12:10 2010 UTC
# Line 2  class apache { Line 2  class apache {
2    
3      class base {      class base {
4          package { "apache-mpm-prefork":          package { "apache-mpm-prefork":
5                alias => apache,
6              ensure => installed              ensure => installed
7          }          }
8            
# Line 10  class apache { Line 11  class apache {
11              ensure => running,              ensure => running,
12              subscribe => [ Package['apache-mpm-prefork'] ],              subscribe => [ Package['apache-mpm-prefork'] ],
13          }          }
14    
15            file { "customization.conf":
16                ensure => present,
17                path => "/etc/httpd/conf/customization.conf",
18                content => template("apache/customization.conf"),
19                require => Package["apache"],
20                notify => Service["apache"],
21                owner => root,
22                group => root,
23                mode => 644,
24            }
25      }      }
26            
27      class mod_php inherits base {      class mod_php inherits base {

Legend:
Removed from v.96  
changed lines
  Added in v.117

  ViewVC Help
Powered by ViewVC 1.1.30