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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1530 - (show annotations) (download)
Tue Apr 19 10:00:25 2011 UTC (13 years ago) by misc
File size: 5197 byte(s)
- add a directory to store locale redirection

1 class phpbb {
2 class base {
3 $db = "phpbb"
4 $user = "phpbb"
5
6 include apache::mod_php
7
8 package { ["php-gd",
9 "php-xml",
10 "php-zlib",
11 "php-ftp",
12 "php-magickwand",
13 "php-pgsql",
14 "php-ldap", ] :
15 ensure => installed
16 }
17
18 package { "perl-DBD-Pg":
19 ensure => installed
20 }
21
22 file { "/usr/local/bin/phpbb_apply_config.pl":
23 ensure => present,
24 owner => root,
25 group => root,
26 mode => 755,
27 source => 'puppet:///modules/phpbb/phpbb_apply_config.pl',
28 }
29
30 $pgsql_password = extlookup("phpbb_pgsql",'x')
31 postgresql::remote_user { $user:
32 password => $pgsql_password,
33 }
34
35 $forums_dir = "/var/www/forums/"
36 file { "$forums_dir":
37 ensure => directory,
38 owner => root,
39 group => root,
40 }
41 # TODO add a ssl counterpart
42 # TODO check that everything is locked down
43 apache::vhost_base { "forums.$domain":
44 content => template("phpbb/forums_vhost.conf"),
45 }
46
47 apache::vhost_base { "ssl_forums.$domain":
48 use_ssl => true,
49 vhost => "forums.$domain",
50 content => template("phpbb/forums_vhost.conf"),
51 }
52
53 file { "/etc/httpd/conf/vhosts.d/forums.d/":
54 ensure => directory,
55 }
56
57 }
58
59 define phpbb_config($key, $value) {
60 exec { "phpbb_apply $name":
61 command => "/usr/local/bin/phpbb_apply_config.pl $key",
62 user => root,
63 environment => ["PGDATABASE=$phpbb::base::database",
64 "PGUSER=$phpbb::base::user",
65 "PGPASSWORD=$phpbb::base::pgsql_password",
66 "PGHOST=pgsql.$domain",
67 "VALUE=$value"],
68 require => File["/usr/local/bin/phpbb_apply_config.pl"],
69 }
70 }
71
72 # TODO find a way to avoid all the phpbb::base prefix
73 define instance() {
74 include phpbb::base
75
76 $lang = $name
77 $database = "${phpbb::base::db}_$lang"
78
79 $user = $phpbb::base::user
80 $pgsql_password = $phpbb::base::pgsql_password
81 $forums_dir = $phpbb::base::forums_dir
82
83 include git::client
84 exec { "git_clone $lang":
85 command =>"git clone git://git.$domain/forum/ $lang",
86 cwd => $forums_dir,
87 creates => "$forums_dir/$lang",
88 require => File["$forums_dir"],
89 notify => Exec["rm_install $lang"],
90 }
91
92 # remove this or the forum will not work ( 'board disabled' )
93 # maybe it would be better to move this elsehwere, I
94 # am not sure ( and in any case, that's still in git )
95 exec { "rm_install $lang":
96 command => "rm -Rf $forums_dir/$lang/phpBB/install",
97 onlyif => "test -d $forums_dir/$lang/phpBB/install",
98 }
99
100 # list found by reading ./install/install_install.php
101 # end of check_server_requirements ( 2 loops )
102
103 $writable_dirs = ['cache',
104 'images/avatars/upload',
105 'files',
106 'store' ]
107
108 $dir_names = regsubst($writable_dirs,'^',"$forums_dir/$lang/phpBB/")
109
110 file { $dir_names:
111 ensure => directory,
112 owner => apache,
113 group => root,
114 mode => 755,
115 require => Exec["git_clone $lang"],
116 }
117
118 file { "$forums_dir/$lang/phpBB/config.php":
119 ensure => present,
120 owner => root,
121 group => root,
122 mode => 644,
123 content => template("phpbb/config.php"),
124 }
125
126
127 postgresql::remote_database { $database:
128 description => "Phpbb database",
129 user => $user,
130 }
131
132 phpbb_config { "ldap_user/$lang":
133 key => "ldap_user",
134 value => "cn=phpbb-$hostname,ou=System Accounts,$dc_suffix",
135 }
136
137 phpbb_config { "ldap_server/$lang":
138 key => "ldap_server",
139 value => "ldaps://ldap.$domain",
140 }
141
142 $ldap_password = extlookup("phpbb_ldap",'x')
143 phpbb_config { "ldap_password/$lang":
144 key => "ldap_password",
145 value => $ldap_password,
146 }
147
148 phpbb_config { "ldap_base_dn/$lang":
149 key => "ldap_base_dn",
150 value => "ou=People,$dc_suffix",
151 }
152
153 phpbb_config { "auth_method/$lang":
154 key => "auth_method",
155 value => "ldap",
156 }
157
158 phpbb_config { "ldap_mail/$lang":
159 key => "ldap_mail",
160 value => "mail",
161 }
162
163 phpbb_config { "ldap_uid/$lang":
164 key => "ldap_mail",
165 value => "uid",
166 }
167
168 phpbb_config { "cookie_domain/$lang":
169 key => "ldap_mail",
170 value => "forums.$domain",
171 }
172
173 phpbb_config { "server_name/$lang":
174 key => "ldap_mail",
175 value => "forums.$domain",
176 }
177
178
179 }
180 }

  ViewVC Help
Powered by ViewVC 1.1.30