diff options
author | Thomas Backlund <tmb@mageia.org> | 2015-10-20 12:52:28 +0300 |
---|---|---|
committer | Thomas Backlund <tmb@mageia.org> | 2015-10-20 12:52:28 +0300 |
commit | 1b90b499acb0200745795ba42ccf997ef1ee25cb (patch) | |
tree | a6b6595be0e98a8a4b6ceaf1426419688bf47f9f /modules/transifex/manifests | |
parent | 8087ac4ad9b6c363d55b65c6bb1c801d5d274c84 (diff) | |
download | puppet-1b90b499acb0200745795ba42ccf997ef1ee25cb.tar puppet-1b90b499acb0200745795ba42ccf997ef1ee25cb.tar.gz puppet-1b90b499acb0200745795ba42ccf997ef1ee25cb.tar.bz2 puppet-1b90b499acb0200745795ba42ccf997ef1ee25cb.tar.xz puppet-1b90b499acb0200745795ba42ccf997ef1ee25cb.zip |
lint fixes for transifex
Diffstat (limited to 'modules/transifex/manifests')
-rw-r--r-- | modules/transifex/manifests/init.pp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/transifex/manifests/init.pp b/modules/transifex/manifests/init.pp index e4500b9f..51c57ca1 100644 --- a/modules/transifex/manifests/init.pp +++ b/modules/transifex/manifests/init.pp @@ -6,7 +6,7 @@ class transifex { $pgsql_password = extlookup('transifex_pgsql','x') $ldap_password = extlookup('transifex_ldap','x') - $templates_dir = "/var/lib/transifex/templates" + $templates_dir = '/var/lib/transifex/templates' postgresql::remote_db_and_user { 'transifex': description => 'Transifex database', @@ -16,12 +16,12 @@ class transifex { define config() { $filename = $name - file { "/etc/transifex/$filename": + file { "/etc/transifex/${filename}": group => 'apache', mode => '0640', require => Package['transifex'], notify => Service['apache'], - content => template("transifex/$filename"), + content => template("transifex/${filename}"), } } |