From 753d8813ad59148fa11ea92f2fcae9f29c6078eb Mon Sep 17 00:00:00 2001 From: Elizabeth Krumbach Date: Fri, 19 Jul 2013 11:52:31 -0700 Subject: [PATCH] Fix jeepyb class issue on git.o.o Of course jeepyb::git doesn't really exist, so class failed in initial attmept to fix missing variables. Moved variables and comment to an existing class. Change-Id: I172588eae4b03427f1ee7862073cd50ca4e5a14e --- modules/openstack_project/manifests/git.pp | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/modules/openstack_project/manifests/git.pp b/modules/openstack_project/manifests/git.pp index 99b2cf4879..71bdd336a9 100644 --- a/modules/openstack_project/manifests/git.pp +++ b/modules/openstack_project/manifests/git.pp @@ -24,16 +24,14 @@ class openstack_project::git ( sysadmins => $sysadmins, } - # We don't actually use these, but jeepyb requires them. - class {'jeepyb::git': - local_git_dir => '/var/lib/git', - ssh_project_key => '', - } - include cgit include jeepyb include pip + # We don't actually use these, but jeepyb requires them. + $local_git_dir = '/var/lib/git' + $ssh_project_key = '' + file { '/etc/cgitrc': ensure => present, owner => 'root',