diff options
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/subsystems/websites.pp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/manifests/subsystems/websites.pp b/manifests/subsystems/websites.pp index 5854ba9..4d70b48 100644 --- a/manifests/subsystems/websites.pp +++ b/manifests/subsystems/websites.pp @@ -130,7 +130,6 @@ class websites::hosting inherits websites::setup { # Include the needed classes for website hosting include php include drupal - include gitweb include trac include websvn include viewvc @@ -140,6 +139,10 @@ class websites::hosting inherits websites::setup { include apache::rails include wordpress + if $git_daemon != false { + include gitweb + } + apache::site { "images": docroot => "${apache_www_folder}/images", mpm => false, |