aboutsummaryrefslogtreecommitdiffstats
path: root/modules/transifex/manifests/init.pp
blob: a7bb7abe4d8ad6608a084b7b430306ba5a9e9a94 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
class transifex {
  package { 'transifex':
    ensure => installed
  }
 
  $password = extlookup("transifex_password") 
  file { "20-engines.conf":
    path => "/etc/transifex/20-engines.conf",
    ensure => present,
    owner => root,
    group => root,
    mode => 755,
    content => template("transifex/20-engines.conf")
  }

#  apache::vhost_django_app { "transifex.$domain":
#    module => "transifex" 
#  }  
}