diff options
Diffstat (limited to 'modules')
-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 8db7706f..e2f4b0e3 100644 --- a/modules/transifex/manifests/init.pp +++ b/modules/transifex/manifests/init.pp @@ -22,7 +22,8 @@ class transifex { group => apache, mode => 640, content => template("transifex/20-engines.conf"), - require => Package['transifex'] + require => Package['transifex'], + notify => Service['apache'] } file { "30-site.conf": @@ -32,7 +33,8 @@ class transifex { group => root, mode => 644, content => template("transifex/30-site.conf"), - require => Package['transifex'] + require => Package['transifex'], + notify => Service['apache'] } # apache::vhost_django_app { "transifex.$domain": |