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

Diff of /puppet/modules/transifex/manifests/init.pp

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 295 by dmorgan, Thu Nov 18 23:20:22 2010 UTC revision 613 by misc, Wed Dec 15 01:39:28 2010 UTC
# Line 1  Line 1 
1  class transifex {  class transifex {
2    package { 'transifex':    package { ['transifex','python-psycopg2']:
3      ensure => installed      ensure => installed
4    }    }
5    
6    $password = extlookup("transifex_password")    $password = extlookup("transifex_password",'x')
7    file { "20-engines.conf":    file { "20-engines.conf":
8      path => "/etc/transifex/20-engines.conf",      path => "/etc/transifex/20-engines.conf",
9      ensure => present,      ensure => present,
10      owner => root,      owner => root,
11      group => root,      group => apache,
12      mode => 755,      mode => 640,
13      content => template("transifex/20-engines.conf")      content => template("transifex/20-engines.conf"),
14        require => Package['transifex']
15    }    }
16    
17    file { "30-site.conf":    file { "30-site.conf":
# Line 18  class transifex { Line 19  class transifex {
19      ensure => present,      ensure => present,
20      owner => root,      owner => root,
21      group => root,      group => root,
22      mode => 755,      mode => 644,
23      content => template("transifex/30-site.conf")      content => template("transifex/30-site.conf"),
24        require => Package['transifex']
25    }    }
26    
27  #  apache::vhost_django_app { "transifex.$domain":  #  apache::vhost_django_app { "transifex.$domain":

Legend:
Removed from v.295  
changed lines
  Added in v.613

  ViewVC Help
Powered by ViewVC 1.1.30