diff options
author | Michael Scherer <misc@mageia.org> | 2010-12-15 01:39:31 +0000 |
---|---|---|
committer | Michael Scherer <misc@mageia.org> | 2010-12-15 01:39:31 +0000 |
commit | f84a18647f74e68240ab136fffc2a933d6d73ec1 (patch) | |
tree | 2764e3a1c36ab8c8bcf25d9e74af7583e4def5ae /modules/transifex | |
parent | b6dd4131755d1ca9ea6779b04ada704f869daaff (diff) | |
download | puppet-f84a18647f74e68240ab136fffc2a933d6d73ec1.tar puppet-f84a18647f74e68240ab136fffc2a933d6d73ec1.tar.gz puppet-f84a18647f74e68240ab136fffc2a933d6d73ec1.tar.bz2 puppet-f84a18647f74e68240ab136fffc2a933d6d73ec1.tar.xz puppet-f84a18647f74e68240ab136fffc2a933d6d73ec1.zip |
reload apache when transifex configuration is changed
Diffstat (limited to 'modules/transifex')
-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": |