/[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 1158 - (hide annotations) (download)
Mon Feb 21 15:52:21 2011 UTC (13 years, 6 months ago) by misc
File size: 3488 byte(s)
clean comments, and add missing configuration set in the db
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 1148 $lang = $name
59 misc 1151 $database = "${phpbb::base::db}_$lang"
60    
61 misc 1147 include git::client
62 misc 1150 include phpbb::base
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 1158 # TODO manage the permission of the various subdirectory
68 misc 1147 exec { "git clone git://git.$domain/forum/ $lang":
69     cwd => $forums_dir,
70 misc 1154 creates => "$forums_dir/$lang",
71     require => File["$forums_dir"]
72 misc 1147 }
73 misc 1075
74 misc 1147 file { "$forums_dir/$lang/phpBB/config.php":
75     ensure => present,
76     owner => root,
77     group => root,
78     mode => 644,
79     content => template("phpbb/config.php"),
80     }
81 misc 1075
82    
83 misc 1147 @@postgresql::database { $database:
84     description => "Phpbb database",
85     user => $user,
86     require => Postgresql::User[$user]
87     }
88 misc 1053
89 misc 1147 phpbb_config { "ldap_user":
90     value => "cn=phpbb-friteuse,ou=System Accounts,$dc_suffix",
91     }
92    
93     phpbb_config { "ldap_server":
94     value => "ldap.$domain",
95     }
96    
97     $ldap_password = extlookup("phpbb_ldap",'x')
98     phpbb_config { "ldap_password":
99     value => $ldap_password,
100     }
101    
102     phpbb_config { "ldap_base_dn":
103     value => "ou=People,$dc_suffix",
104     }
105 misc 1158
106     phpbb_config { "auth_method":
107     value => "ldap",
108     }
109    
110     phpbb_config { "ldap_mail":
111     value => "mail",
112     }
113    
114     phpbb_config { "ldap_uid":
115     value => "uid",
116     }
117    
118     phpbb_config { "cookie_domain":
119     value => "forums.$domain",
120     }
121    
122     phpbb_config { "server_name":
123     value => "forums.$domain",
124     }
125    
126    
127 misc 1072 }
128 misc 1053 }

  ViewVC Help
Powered by ViewVC 1.1.30