aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--manifests/gitweb.pp5
-rw-r--r--templates/gitweb.conf.erb2
2 files changed, 6 insertions, 1 deletions
diff --git a/manifests/gitweb.pp b/manifests/gitweb.pp
index 9f3343c..dbf08e1 100644
--- a/manifests/gitweb.pp
+++ b/manifests/gitweb.pp
@@ -9,6 +9,11 @@ class gitweb inherits gitosis {
default => $base_domain,
}
+ $base_url_protocol = $gitweb_protocol ? {
+ '' => 'git',
+ default => $gitweb_protocol,
+ }
+
# gitweb config file
file { "/etc/gitweb.conf":
owner => "root",
diff --git a/templates/gitweb.conf.erb b/templates/gitweb.conf.erb
index 55ee746..697d7a9 100644
--- a/templates/gitweb.conf.erb
+++ b/templates/gitweb.conf.erb
@@ -25,4 +25,4 @@ $logo = "/git-logo.png";
$favicon = "/git-favicon.png";
# header url
-@git_base_url_list = ('git://git.<%= hosting_domain %>');
+@git_base_url_list = (<%= base_url_protocol %>'://git.<%= hosting_domain %>');