Support #793
Redmine/repository link broken
Status:
Rejected
Priority:
Normal
Assignee:
Category:
Code Management
Target version:
Start date:
04 November 2011
Due date:
% Done:
0%
Estimated time:
Workflow:
Description
Hi Antony,
The maus redmine repository link has broken - smoething you can fix?
http://micewww.pp.rl.ac.uk/projects/maus/repository
Specifically, the code there has not updated for a long time. Probably a cron job pointing to an incorrect branch (maybe it is using lp:maus when it should be using the full URL?) Something you can fix?
Cheers,
Chris
Updated by Wilson, Antony about 12 years ago
- Assignee changed from Wilson, Antony to Fayer, Simon
the current script is:
#!/bin/sh ROOTDIR=/redmine_repos REPOS="maus mcdb xboa" export http_proxy=http://wwwcache.rl.ac.uk:8080 cd "$ROOTDIR" for REPO in $REPOS; do export $REPO ( cd "$ROOTDIR/$REPO"; /usr/bin/bzr pull >/dev/null 2>&1; ) chown -R apache:apache "$ROOTDIR/$REPO" done /usr/local/bin/ruby /redmine/script/runner "Repository.fetch_changesets" -e production >/dev/null 2>&1 killall cvs >/dev/null 2>&1; # if the CVS server dies, it'll create so many cvs instances the server crashes killall bzr >/dev/null 2>&1;
and it gives the following errors
Using saved parent location: bzr+ssh://bazaar.launchpad.net/%2Bbranch/maus/ bzr: ERROR: These branches have diverged. Use the missing command to see how. Use the merge command to reconcile them. Using saved parent location: http://bazaar.launchpad.net/~antony-wilson/mcdb/trunk/ No revisions to pull. Using saved parent location: bzr://xboa.bzr.sourceforge.net/bzrroot/xboa/ No revisions to pull. cvs rlog: warning: failed to open /root/.cvspass for reading: No such file or directory bzr: ERROR: Connection error: while sending POST /bazaar/: (111, 'Connection refused') bzr: ERROR: Connection error: while sending POST /bazaar/: (111, 'Connection refused')
Simon can you advise thanks
Updated by Fayer, Simon about 12 years ago
You probably just need to erase the repos in /redmine_repos and then re-pull them from the correct location...
Updated by Rogers, Chris about 12 years ago
Great, is that something you can do easily then Simon?