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

Contents of /puppet/modules/epoll/manifests/init.pp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 340 - (show annotations) (download)
Sat Nov 20 11:52:54 2010 UTC (13 years, 5 months ago) by misc
File size: 469 byte(s)
- do not let file with passwords to be world readable 
    ( even if being readable by apache is not good either, but needed as the password is used by apache )
- use ldaps for sympa
- use the 2 new facter macro and remove the version copied everywhere
- remove hardcoded domain in bugzilla and others

1 class epoll {
2
3 $vhost = "epoll.$domain"
4
5 package { 'Epoll':
6 ensure => installed
7 }
8
9 apache::vhost_catalyst_app { $vhost:
10 script => "/usr/bin/epoll_fastcgi.pl"
11 }
12
13 $password = extlookup("epoll_password")
14
15 file { "epoll.yml":
16 path => "/etc/epoll.yml",
17 ensure => "present",
18 owner => root,
19 group => apache,
20 mode => 640,
21 content => template("epoll/epoll.yml")
22 }
23 }

  ViewVC Help
Powered by ViewVC 1.1.30