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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 84 - (hide annotations) (download)
Thu Nov 4 15:53:24 2010 UTC (13 years, 5 months ago) by misc
File size: 785 byte(s)
- since catdap use fcgid ( in the example file given by buchan ), let's add this

1 misc 80 class apache {
2    
3     class base {
4     package { "apache-mpm-prefork":
5     ensure => installed
6     }
7    
8     service { apache:
9     ensure => running,
10     subscribe => [ Package['apache-mpm-prefork'] ],
11     path => "/etc/init.d/httpd"
12     }
13     }
14    
15     class mod_php inherits base {
16     package { "apache-mod_php":
17     ensure => installed
18     }
19     }
20    
21     class mod_perl inherits base {
22     package { "apache-mod_perl":
23     ensure => installed
24     }
25     }
26    
27 misc 84 class mod_fcgid inherits base {
28     package { "apache-mod_fcgid":
29     ensure => installed
30     }
31     }
32    
33    
34 misc 80 class mod_wsgi inherits base {
35     package { "apache-mod_wsgi":
36     ensure => installed
37     }
38     }
39     }

  ViewVC Help
Powered by ViewVC 1.1.30