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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1169 - (hide annotations) (download)
Tue Feb 22 01:04:21 2011 UTC (13 years, 2 months ago) by misc
File size: 4209 byte(s)
- phpbb enforce that install is not present ( which is a good thing
for security, and a bad thing because this force me to do some hack like this)
1 misc 1053 class phpbb {
2 misc 1147 class base {
3     $db = "phpbb"
4     $user = "phpbb"
5 misc 1053
6 misc 1147 include apache::mod_php
7     include mysql
8 misc 1053
9 misc 1147 package { ["php-gd","php-xml","php-zlib","php-ftp","php-magickwand","php-pgsql" ] :
10     ensure => installed
11     }
12 misc 1053
13 misc 1147 package { "perl-DBD-Pg":
14     ensure => installed
15     }
16 misc 1053
17 misc 1147 file { "/usr/local/bin/phpbb_apply_config.pl":
18     ensure => present,
19     owner => root,
20     group => root,
21     mode => 755,
22     source => 'puppet:///modules/phpbb/phpbb_apply_config.pl',
23     }
24 misc 1053
25 misc 1147 $pgsql_password = extlookup("phpbb_pgsql",'x')
26     @@postgresql::user { $user:
27     password => $pgsql_password,
28     }
29 misc 1053
30 misc 1147 $forums_dir = "/var/www/forums/"
31     file { "$forums_dir":
32     ensure => directory,
33     owner => root,
34     group => root,
35     }
36 misc 1158 # TODO add a ssl counterpart
37     # TODO check that everything is locked down
38 misc 1156 apache::vhost_base { "forums.$domain":
39     content => template("phpbb/forums_vhost.conf"),
40     }
41    
42 misc 1075 }
43    
44 misc 1152 define phpbb_config($value) {
45     exec { "/usr/local/bin/phpbb_apply_config.pl $name":
46     user => root,
47     environment => ["PGDATABASE=$phpbb::base::database",
48     "PGUSER=$phpbb::base::user",
49     "PGPASSWORD=$phpbb::base::pgsql_password",
50     "PGHOST=pgsql.$domain",
51     "VALUE=$value"],
52     require => File["/usr/local/bin/phpbb_apply_config.pl"],
53     }
54     }
55 misc 1151
56     # TODO find a way to avoid all the phpbb::base prefix
57     define instance() {
58 misc 1161 include phpbb::base
59    
60 misc 1148 $lang = $name
61 misc 1151 $database = "${phpbb::base::db}_$lang"
62    
63 misc 1153 $user = $phpbb::base::user
64     $pgsql_password = $phpbb::base::pgsql_password
65     $forums_dir = $phpbb::base::forums_dir
66 misc 1075
67 misc 1161 include git::client
68 misc 1167 exec { "git_clone $lang":
69     command =>"git clone git://git.$domain/forum/ $lang",
70 misc 1147 cwd => $forums_dir,
71 misc 1154 creates => "$forums_dir/$lang",
72 misc 1169 require => File["$forums_dir"],
73     notify => "rm_install $lang",
74 misc 1147 }
75 misc 1075
76 misc 1169 # remove this or the forum will not work ( 'board disabled' )
77     # maybe it would be better to move this elsehwere, I
78     # am not sure ( and in any case, that's still in git )
79     exec { "rm_install $lang":
80     command => "rm -Rf $forums_dir/$lang/phpBB/install":
81     onlyif => "test -d $forums_dir/$lang/phpBB/install",
82     }
83    
84 misc 1168 # TODO manage the permission of the various subdirectories
85     $writable_dir = ['cache']
86     file { "$forums_dir/$lang/phpBB/$writable_dir":
87     ensure => directory,
88     owner => apache,
89     group => root,
90     mode => 755,
91     require => Exec["git_clone $lang"],
92     }
93    
94 misc 1147 file { "$forums_dir/$lang/phpBB/config.php":
95     ensure => present,
96     owner => root,
97     group => root,
98     mode => 644,
99     content => template("phpbb/config.php"),
100     }
101 misc 1075
102    
103 misc 1147 @@postgresql::database { $database:
104     description => "Phpbb database",
105     user => $user,
106     require => Postgresql::User[$user]
107     }
108 misc 1053
109 misc 1147 phpbb_config { "ldap_user":
110     value => "cn=phpbb-friteuse,ou=System Accounts,$dc_suffix",
111     }
112    
113     phpbb_config { "ldap_server":
114     value => "ldap.$domain",
115     }
116    
117     $ldap_password = extlookup("phpbb_ldap",'x')
118     phpbb_config { "ldap_password":
119     value => $ldap_password,
120     }
121    
122     phpbb_config { "ldap_base_dn":
123     value => "ou=People,$dc_suffix",
124     }
125 misc 1158
126     phpbb_config { "auth_method":
127     value => "ldap",
128     }
129    
130     phpbb_config { "ldap_mail":
131     value => "mail",
132     }
133    
134     phpbb_config { "ldap_uid":
135     value => "uid",
136     }
137    
138     phpbb_config { "cookie_domain":
139     value => "forums.$domain",
140     }
141    
142     phpbb_config { "server_name":
143     value => "forums.$domain",
144     }
145    
146    
147 misc 1072 }
148 misc 1053 }

  ViewVC Help
Powered by ViewVC 1.1.30