I have Subversion installed on Linux (Slackware), and repositories (projects) are in the following path repopath
.
All individual projects have their own directories (conf, db, hooks, locks).
Using the command svnadmin dump repopath/* > svndump.dmp
was making the dump of all projects and all revisions.
Since a new project added using the following command
svnadmin create newproj
Nowm when O used svnadmin dump repopath/*
> svndump.dmp it only makes backup of this newly created project with all it's revisions.
What could go wrong? How to again make backup? of all repositories (projects) and all revisions using a single command svnadmin dump repopath/* > svndump.dmp
?