diff options
author | Michael Scherer <misc@mageia.org> | 2010-12-15 21:24:26 +0000 |
---|---|---|
committer | Michael Scherer <misc@mageia.org> | 2010-12-15 21:24:26 +0000 |
commit | c41357a607659099be05c5ada092cf343b08560c (patch) | |
tree | 87f49f61cea32e31422d8ae14c50aaeae206d8c5 /modules/transifex/manifests | |
parent | db6bb8f84629ddac88b1e658da946a3f595e013f (diff) | |
download | puppet-c41357a607659099be05c5ada092cf343b08560c.tar puppet-c41357a607659099be05c5ada092cf343b08560c.tar.gz puppet-c41357a607659099be05c5ada092cf343b08560c.tar.bz2 puppet-c41357a607659099be05c5ada092cf343b08560c.tar.xz puppet-c41357a607659099be05c5ada092cf343b08560c.zip |
allow to use email on log on transifex
Diffstat (limited to 'modules/transifex/manifests')
-rw-r--r-- | modules/transifex/manifests/init.pp | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/modules/transifex/manifests/init.pp b/modules/transifex/manifests/init.pp index 88e9a34a..d3d2ead2 100644 --- a/modules/transifex/manifests/init.pp +++ b/modules/transifex/manifests/init.pp @@ -74,6 +74,16 @@ class transifex { notify => Service['apache'] } + file { "custom_backend.py": + path => "/usr/local/lib/custom_backend.py", + ensure => present, + owner => root, + group => root, + mode => 644, + source => "puppet:///modules/transifex/custom_backend.py", + notify => Service['apache'] + } + subversion::snapshot { $templates_dir: source => "svn://svn.mageia.org/svn/web/templates/transifex/trunk" } @@ -81,7 +91,7 @@ class transifex { apache::vhost_django_app { "transifex.$domain": module => "transifex", use_ssl => true, - module_path => ["/usr/share/transifex","/usr/share"] + module_path => ["/usr/share/transifex","/usr/share","/usr/local/lib/"] } apache::vhost_redirect_ssl { "transifex.$domain": } |