/[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 1169 - (show 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 class phpbb {
2 class base {
3 $db = "phpbb"
4 $user = "phpbb"
5
6 include apache::mod_php
7 include mysql
8
9 package { ["php-gd","php-xml","php-zlib","php-ftp","php-magickwand","php-pgsql" ] :
10 ensure => installed
11 }
12
13 package { "perl-DBD-Pg":
14 ensure => installed
15 }
16
17 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
25 $pgsql_password = extlookup("phpbb_pgsql",'x')
26 @@postgresql::user { $user:
27 password => $pgsql_password,
28 }
29
30 $forums_dir = "/var/www/forums/"
31 file { "$forums_dir":
32 ensure => directory,
33 owner => root,
34 group => root,
35 }
36 # TODO add a ssl counterpart
37 # TODO check that everything is locked down
38 apache::vhost_base { "forums.$domain":
39 content => template("phpbb/forums_vhost.conf"),
40 }
41
42 }
43
44 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
56 # TODO find a way to avoid all the phpbb::base prefix
57 define instance() {
58 include phpbb::base
59
60 $lang = $name
61 $database = "${phpbb::base::db}_$lang"
62
63 $user = $phpbb::base::user
64 $pgsql_password = $phpbb::base::pgsql_password
65 $forums_dir = $phpbb::base::forums_dir
66
67 include git::client
68 exec { "git_clone $lang":
69 command =>"git clone git://git.$domain/forum/ $lang",
70 cwd => $forums_dir,
71 creates => "$forums_dir/$lang",
72 require => File["$forums_dir"],
73 notify => "rm_install $lang",
74 }
75
76 # 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 # 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 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
102
103 @@postgresql::database { $database:
104 description => "Phpbb database",
105 user => $user,
106 require => Postgresql::User[$user]
107 }
108
109 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
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 }
148 }

  ViewVC Help
Powered by ViewVC 1.1.30