Skip to content

Commit

Permalink
github.com/NewDreamNetwork -> github.com/ceph
Browse files Browse the repository at this point in the history
  • Loading branch information
liewegas committed Mar 2, 2012
1 parent a80246c commit dc1abab
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion coverage/cov-init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ SHA1=`cat $TEST_DIR/ceph-sha1`
mkdir -p $OUTPUT_DIR/ceph

echo "Retrieving source and .gcno files..."
wget -q -O- "https://github.com/NewDreamNetwork/ceph/tarball/$SHA1" | tar xzf - --strip-components=1 -C $OUTPUT_DIR/ceph
wget -q -O- "https://github.com/ceph/ceph/tarball/$SHA1" | tar xzf - --strip-components=1 -C $OUTPUT_DIR/ceph
tar zxf $CEPH_TARBALL -C $OUTPUT_DIR
cp $OUTPUT_DIR/usr/local/lib/ceph/coverage/*.gcno $OUTPUT_DIR/ceph/src
mkdir $OUTPUT_DIR/ceph/src/.libs
Expand Down
2 changes: 1 addition & 1 deletion teuthology/task/chef.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def task(ctx, config):
'wget',
'-q',
'-O-',
# 'https://raw.github.com/NewDreamNetwork/ceph-qa-chef/master/solo/solo-from-scratch',
# 'https://raw.github.com/ceph/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',
Expand Down
3 changes: 2 additions & 1 deletion teuthology/task/lost_unfound.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,8 @@ def task(ctx, config):
primary = 'osd.%d' % pg['acting'][0]

# verify that i can list them direct from the osd
log.info('listing missing/lost in %s', pg['pgid']);
log.info('listing missing/lost in %s state %s', pg['pgid'],
pg['state']);
m = manager.list_pg_missing(pg['pgid'])
#log.info('%s' % m)
assert m['num_unfound'] == pg['stat_sum']['num_objects_unfound']
Expand Down
2 changes: 1 addition & 1 deletion teuthology/task/s3readwrite.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def download(ctx, config):
ctx.cluster.only(client).run(
args=[
'git', 'clone',
# 'https://github.com/NewDreamNetwork/s3-tests.git',
# 'https://github.com/ceph/s3-tests.git',
'http://ceph.newdream.net/git/s3-tests.git',
'/tmp/cephtest/s3-tests',
],
Expand Down
2 changes: 1 addition & 1 deletion teuthology/task/s3roundtrip.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def download(ctx, config):
ctx.cluster.only(client).run(
args=[
'git', 'clone',
# 'https://github.com/NewDreamNetwork/s3-tests.git',
# 'https://github.com/ceph/s3-tests.git',
'http://ceph.newdream.net/git/s3-tests.git',
'/tmp/cephtest/s3-tests',
],
Expand Down
2 changes: 1 addition & 1 deletion teuthology/task/s3tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def download(ctx, config):
ctx.cluster.only(client).run(
args=[
'git', 'clone',
# 'https://github.com/NewDreamNetwork/s3-tests.git',
# 'https://github.com/ceph/s3-tests.git',
'http://ceph.newdream.net/git/s3-tests.git',
'/tmp/cephtest/s3-tests',
],
Expand Down
2 changes: 1 addition & 1 deletion teuthology/task/swift.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def download(ctx, config):
ctx.cluster.only(client).run(
args=[
'git', 'clone',
'https://github.com/NewDreamNetwork/swift.git',
'https://github.com/ceph/swift.git',
'/tmp/cephtest/swift',
],
)
Expand Down
2 changes: 1 addition & 1 deletion teuthology/task/workunit.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ def _run_tests(ctx, role, tests):
'-q',
'-O-',
# TODO make branch/tag/sha1 used configurable
'https://github.com/NewDreamNetwork/ceph/tarball/HEAD',
'https://github.com/ceph/ceph/tarball/HEAD',
run.Raw('|'),
'tar',
'-C', srcdir,
Expand Down

0 comments on commit dc1abab

Please sign in to comment.