aboutsummaryrefslogtreecommitdiffstats
path: root/modules/transifex/manifests/init.pp
blob: 7720b4dd5097e8724534ecf0a720bdb46b4a642f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
class transifex {
  package { 'transifex':
    ensure => installed
  }
  
  file { "check_new-blog-post":
    path => "/etc/transifex/20-engines.conf",
    ensure => present,
    owner => root,
    group => root,
    mode => 755,
    content => template("transifex/20-engines.conf")
  }
}