diff options
Diffstat (limited to 'modules')
-rw-r--r-- | modules/gitweb/manifests/init.pp | 1 | ||||
-rw-r--r-- | modules/viewvc/manifests/init.pp | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/modules/gitweb/manifests/init.pp b/modules/gitweb/manifests/init.pp index d0b3b255..03fd901c 100644 --- a/modules/gitweb/manifests/init.pp +++ b/modules/gitweb/manifests/init.pp @@ -20,6 +20,7 @@ class gitweb { path => '/etc/httpd/conf/webapps.d/gitweb.conf', content => template('gitweb/webapp.conf'), notify => Service['apache'], + require => Package['apache'], } file { 'gitweb.wrapper.sh': diff --git a/modules/viewvc/manifests/init.pp b/modules/viewvc/manifests/init.pp index 8d74346d..37e62e3d 100644 --- a/modules/viewvc/manifests/init.pp +++ b/modules/viewvc/manifests/init.pp @@ -18,6 +18,7 @@ class viewvc { path => '/etc/httpd/conf/webapps.d/viewvc.conf', content => template('viewvc/webapp.conf'), notify => Service['apache'], + require => Package['apache'], } $kill_viewvc_path = '/usr/local/sbin/kill_viewvc' |