#!/bin/bash HGRSYNC="cvs-int.fedora.redhat.com/hgrepos/hosted" GITRSYNC="cvs-int.fedora.redhat.com/gitrepos/hosted" SVNRSYNC="cvs-int.fedora.redhat.com/svnrepos/hosted" BZRRSYNC='cvs-int.fedora.redhat.com/bzrrepos/hosted' # One off -- should be merged on the new hosted boxes GITRELENG="../fedora/releng" # Sync the hg repos rsync -aH --delete --delete-after rsync://${HGRSYNC}/ /netapp/app/scm/hg # Sync the git repos rsync -aH --delete --delete-after rsync://${GITRSYNC}/ /netapp/app/scm/git # Sync the svn repos rsync -aH --delete --delete-after rsync://${SVNRSYNC}/ /netapp/app/scm/svn # Sync bzr repos rsync -aH --delete --delete-after rsync://${BZRRSYNC}/ /netapp/app/scm/bzr rsync -aH --delete --delete-after rsync://${GITRSYNC}/${GITRELENG} /netapp/app/scm/git