From 68cdeeb2f587f5cf16a87b14644d6366b1ccb9d9 Mon Sep 17 00:00:00 2001 From: Chris Gearing Date: Thu, 12 Jul 2012 08:18:09 -0700 Subject: [PATCH] LU-1627 build: Change lbuild to use https://github.com/zfsonlinux lbuild fetches zfs/spl source using git@github.com:zfsonlinux which requires a ssh keypair with git hub. If we change this to https://github.com/zfsonlinux then we will not need local keys for github as part of the builds. The option to change the default by using SPLZFSGITREPO should be kept. So change git clone ${SPLZFSGITREPO:-"git@github.com:zfsonlinux"}/$pkg.git $pkg to git clone ${SPLZFSGITREPO:-"https://github.com/zfsonlinux"}/$pkg.git $pkg Signed-off-by: Chris Gearing Change-Id: I34c870b9aea98001115ff43291a6f95c5d268016 Reviewed-on: http://review.whamcloud.com/3387 Reviewed-by: Andreas Dilger Tested-by: Hudson Tested-by: Maloo Reviewed-by: Joshua Kugler Reviewed-by: Oleg Drokin --- build/lbuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/lbuild b/build/lbuild index 3bac48e..72bac12 100755 --- a/build/lbuild +++ b/build/lbuild @@ -972,7 +972,7 @@ build_spl_zfs() { # need to fetch the repo in order to build it. # default to github but allow override - git clone ${SPLZFSGITREPO:-"git@github.com:zfsonlinux"}/$pkg.git $pkg 2>&1 + git clone ${SPLZFSGITREPO:-"https://github.com/zfsonlinux"}/$pkg.git $pkg 2>&1 pushd $pkg || return 255 -- 1.8.3.1