On Apr 12, 2005 12:53 PM, Sreekumar Kodakara <skodak at cs.umn.edu> wrote:
> Hi
> 
> Is there any scripts already available? Is this
> recommended?

All you need is rsync over ssh.  It makes life very easy.  Keep the
"master" repository on a more stable box and then sync it daily to the
box that gets backed up.

something like:

rsync -avz --delete -e ssh /path/to/local/cvs/repo
user at remotehost:/path/to/remote/repo

Run that from cron hourly or whatever.

-Erik