diff options
Diffstat (limited to 'modules/transifex/manifests')
-rw-r--r-- | modules/transifex/manifests/init.pp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/modules/transifex/manifests/init.pp b/modules/transifex/manifests/init.pp index a1bedb1e..19e76ae4 100644 --- a/modules/transifex/manifests/init.pp +++ b/modules/transifex/manifests/init.pp @@ -10,7 +10,8 @@ class transifex { owner => root, group => apache, mode => 640, - content => template("transifex/20-engines.conf") + content => template("transifex/20-engines.conf"), + require => Package['transifex'] } file { "30-site.conf": @@ -19,7 +20,8 @@ class transifex { owner => root, group => root, mode => 644, - content => template("transifex/30-site.conf") + content => template("transifex/30-site.conf"), + require => Package['transifex'] } # apache::vhost_django_app { "transifex.$domain": |