CVS anonymous - no such user

Discuss the development of software, tools, libraries and anything else that helps make ps2dev happen.

Moderators: cheriff, Herben

Post Reply
ddv
Posts: 2
Joined: Fri May 13, 2005 11:33 pm

CVS anonymous - no such user

Post by ddv »

cvs -d:pserver:pserver:[email protected]:/home/ps2cvs login
(Logging in to pserver:[email protected])
CVS password:
Fatal error, aborting.
pserver:anonymous: no such user
cvs login: authorization failed: server ps2dev.org rejected access to /home/ps2cvs for user pserver:anonymous


Do you change user for CVS access?
Steve F
Posts: 75
Joined: Wed Apr 27, 2005 2:30 am
Location: Texas USA

Post by Steve F »

I just ran an update (actually it's still running), and anonymous worked fine.

My .cvspass line is
/1 :pserver:[email protected]:2401/home/ps2cvs Ay=0=a%0bZ

Called from ps2devupdate.sh as

## CVS configuration.
if [ -z "`cat ~/.cvspass | grep $CVSROOT`" ]; then
echo "THE SECRET PASSWORD IS: anonymous"
cvs -d $CVSROOT login
fi

And my CVSROOT is

export CVSROOT=":pserver:[email protected]:2401/home/ps2cvs"
ooPo
Site Admin
Posts: 2023
Joined: Sat Jan 17, 2004 9:56 am
Location: Canada
Contact:

Post by ooPo »

cvs -d:pserver:pserver:[email protected]:/home/ps2cvs login
pserver:anonymous: no such user
cvs login: authorization failed: server ps2dev.org rejected access to /home/ps2cvs for user pserver:anonymous
You have pserver in there twice, take one out.
ddv
Posts: 2
Joined: Fri May 13, 2005 11:33 pm

Post by ddv »

ooPo wrote: You have pserver in there twice, take one out.
BIG THANKS!
Steve F
Posts: 75
Joined: Wed Apr 27, 2005 2:30 am
Location: Texas USA

Post by Steve F »

I just ran an update (actually it's still running), and anonymous worked fine.

My .cvspass line is
/1 :pserver:[email protected]:2401/home/ps2cvs Ay=0=a%0bZ

Called from ps2devupdate.sh as

## CVS configuration.
if [ -z "`cat ~/.cvspass | grep $CVSROOT`" ]; then
echo "THE SECRET PASSWORD IS: anonymous"
cvs -d $CVSROOT login
fi

And my CVSROOT is

export CVSROOT=":pserver:[email protected]:2401/home/ps2cvs"
Post Reply