From 72057a9cd828388829398fac42da6ad05e5cae43 Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Sun, 15 Jan 2012 22:48:33 -0800 Subject: [PATCH] use local mirrors for (most) github urls A cronjob on ceph.newdream.net updates these every 15 minutes. Sigh. --- teuthology/task/chef.py | 3 ++- teuthology/task/s3readwrite.py | 3 ++- teuthology/task/s3roundtrip.py | 3 ++- teuthology/task/s3tests.py | 3 ++- 4 files changed, 8 insertions(+), 4 deletions(-) diff --git a/teuthology/task/chef.py b/teuthology/task/chef.py index 510eff76e7..7793974604 100644 --- a/teuthology/task/chef.py +++ b/teuthology/task/chef.py @@ -16,7 +16,8 @@ def task(ctx, config): 'wget', '-q', '-O-', - 'https://raw.github.com/NewDreamNetwork/ceph-qa-chef/master/solo/solo-from-scratch', +# 'https://raw.github.com/NewDreamNetwork/ceph-qa-chef/master/solo/solo-from-scratch', + 'http://ceph.newdream.net/git/?p=ceph-qa-chef.git;a=blob_plain;f=solo/solo-from-scratch;hb=HEAD', run.Raw('|'), 'sh', ], diff --git a/teuthology/task/s3readwrite.py b/teuthology/task/s3readwrite.py index c8dd16187f..3739bf04bb 100644 --- a/teuthology/task/s3readwrite.py +++ b/teuthology/task/s3readwrite.py @@ -21,7 +21,8 @@ def download(ctx, config): ctx.cluster.only(client).run( args=[ 'git', 'clone', - 'https://github.com/NewDreamNetwork/s3-tests.git', +# 'https://github.com/NewDreamNetwork/s3-tests.git', + 'http://ceph.newdream.net/git/s3-tests.git', '/tmp/cephtest/s3-tests', ], ) diff --git a/teuthology/task/s3roundtrip.py b/teuthology/task/s3roundtrip.py index c1e2e3046e..32c666b7df 100644 --- a/teuthology/task/s3roundtrip.py +++ b/teuthology/task/s3roundtrip.py @@ -21,7 +21,8 @@ def download(ctx, config): ctx.cluster.only(client).run( args=[ 'git', 'clone', - 'https://github.com/NewDreamNetwork/s3-tests.git', +# 'https://github.com/NewDreamNetwork/s3-tests.git', + 'http://ceph.newdream.net/git/s3-tests.git', '/tmp/cephtest/s3-tests', ], ) diff --git a/teuthology/task/s3tests.py b/teuthology/task/s3tests.py index d2685cf093..5c64d4c260 100644 --- a/teuthology/task/s3tests.py +++ b/teuthology/task/s3tests.py @@ -21,7 +21,8 @@ def download(ctx, config): ctx.cluster.only(client).run( args=[ 'git', 'clone', - 'https://github.com/NewDreamNetwork/s3-tests.git', +# 'https://github.com/NewDreamNetwork/s3-tests.git', + 'http://ceph.newdream.net/git/s3-tests.git', '/tmp/cephtest/s3-tests', ], ) -- 2.39.5