Parent Directory
|
Revision Log
- 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 | dmorgan | 177 | class transifex { |
2 | package { 'transifex': | ||
3 | ensure => installed | ||
4 | } | ||
5 | dmorgan | 240 | |
6 | $password = extlookup("transifex_password") | ||
7 | misc | 191 | file { "20-engines.conf": |
8 | dmorgan | 177 | path => "/etc/transifex/20-engines.conf", |
9 | ensure => present, | ||
10 | owner => root, | ||
11 | misc | 340 | group => apache, |
12 | mode => 640, | ||
13 | dmorgan | 177 | content => template("transifex/20-engines.conf") |
14 | } | ||
15 | misc | 265 | |
16 | dmorgan | 295 | file { "30-site.conf": |
17 | path => "/etc/transifex/30-site.conf", | ||
18 | ensure => present, | ||
19 | owner => root, | ||
20 | group => root, | ||
21 | misc | 340 | mode => 644, |
22 | dmorgan | 295 | content => template("transifex/30-site.conf") |
23 | } | ||
24 | |||
25 | misc | 270 | # apache::vhost_django_app { "transifex.$domain": |
26 | # module => "transifex" | ||
27 | # } | ||
28 | dmorgan | 177 | } |
ViewVC Help | |
Powered by ViewVC 1.1.28 |