From 744de231fe5de416f4744967eda21fb645c2128f Mon Sep 17 00:00:00 2001 From: Timothy Chavez Date: Tue, 21 Jul 2015 18:50:17 -0500 Subject: [PATCH] Use valid cgitrc configuration key The cgitrc configuration should be 'clone-prefix' not 'clone_prefix'[1] This fix will correctly override the default set in puppet-cgit. [1] http://git.zx2c4.com/cgit/tree/cgitrc.5.txt Change-Id: Ie96e046febcacc5359fe449b82ee6f32bcac9287 --- modules/openstack_project/manifests/git_backend.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/openstack_project/manifests/git_backend.pp b/modules/openstack_project/manifests/git_backend.pp index 3d2d7765c0..caebe11d98 100644 --- a/modules/openstack_project/manifests/git_backend.pp +++ b/modules/openstack_project/manifests/git_backend.pp @@ -46,7 +46,7 @@ class openstack_project::git_backend ( ssl_chain_file_contents => $ssl_chain_file_contents, behind_proxy => $behind_proxy, cgitrc_settings => { - 'clone_prefix' => 'git://git.openstack.org https://git.openstack.org', + 'clone-prefix' => 'git://git.openstack.org https://git.openstack.org', 'commit-filter' => '/usr/local/bin/commit-filter.sh', 'css' => '/static/openstack.css', 'favicon' => '/static/favicon.ico',