From: Silvio Rhatto Date: Tue, 24 Mar 2015 14:17:09 +0000 (-0300) Subject: Git module refactor X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=733495ef4b54000a3adabe305ef649104ae7ca47;p=puppet-websites.git Git module refactor --- diff --git a/manifests/hosting.pp b/manifests/hosting.pp index 309e840..cf47eee 100644 --- a/manifests/hosting.pp +++ b/manifests/hosting.pp @@ -16,7 +16,7 @@ class websites::hosting inherits websites::setup { $git_daemon = hiera('nodo::web::git_daemon', True) if $git_daemon != false { - class { 'gitweb': } + class { 'git::gitweb': } } apache::site { "images": diff --git a/manifests/hosting/admin.pp b/manifests/hosting/admin.pp index 554a202..0dd546e 100644 --- a/manifests/hosting/admin.pp +++ b/manifests/hosting/admin.pp @@ -1,5 +1,5 @@ class websites::hosting::admin inherits websites::setup { # Include the needed classes for admin interfaces include trac - include gitweb + include git::gitweb }