From a1845d4c5e885ad6bf0dd31c4cbdeedd54214323 Mon Sep 17 00:00:00 2001 From: Monty Taylor <mordred@inaugust.com> Date: Mon, 23 Jul 2012 17:07:15 -0500 Subject: [PATCH] Fix naming github_user to github_username. Change-Id: Ibe4aff29f4d5baa2733ad64c6a5dfe46ff85155e --- modules/openstack_project/manifests/gerrit.pp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/openstack_project/manifests/gerrit.pp b/modules/openstack_project/manifests/gerrit.pp index db407f7678..5f9a355d53 100644 --- a/modules/openstack_project/manifests/gerrit.pp +++ b/modules/openstack_project/manifests/gerrit.pp @@ -22,8 +22,8 @@ class openstack_project::gerrit ( $script_user, $script_key_file, $github_projects = [], - $github_user, - $github_token, + $github_username, + $github_oauth_token, $mysql_password, $email_private_key, $testmode=false, @@ -89,8 +89,8 @@ class openstack_project::gerrit ( } class { 'github': github_projects => $github_projects, - github_user => $github_username, - github_token => $github_oauth_token, + github_username => $github_username, + github_oauth_token => $github_oauth_token, } }