Find out if a Subversion Repository is using fsfs or bdb

· 64 words · 1 minute read

As our Subversion server could maybe use some tweaks I was wondering how I can find out if my repositories are using fsfs or bdb as the backend for storing the versioning information. It’s fairly easy to determine, simply check the content of the file fs-type within the repository.

for i in `find /srv/subversion/repos -name fs-type`; do echo -n "$i: "; cat $i; done