1

I cannot find a good/official way to do this in Ubuntu.

The best one I got from googling is this post.

So how can we completely remove UberSVN after installing it?

Nam G VU
  • 287
  • 2
  • 5
  • 15

2 Answers2

5

Yes, it's not installed via the package manager, so it's going to need you to do two things to uninstall uberSVN completely (it would be good to know why you want to uninstall too?).

  1. Stop uberSVN and apache, either via the UI or by using the control script -
    "/etc/init.d/ubersvncontrol stop" and "/etc/init.d/svnservercontrol stop" (or if you must, by killing the Tomcat process).
  2. Delete all contents of /opt/ubersvn (the default install location, assuming you installed there).
  3. Delete /etc/init.d/svnservercontrol and /etc/init.d/ubersvncontrol

That will remove all traces of uberSVN...

voretaq7
  • 79,879
  • 17
  • 130
  • 214
Ian Wild
  • 51
  • 2
  • Don't forget to delete ubersvn linux user with: sudo userdel ubersvn –  Jan 15 '12 at 22:46
0

Also, as root edit these files and remove the uber* user and group:

/etc/group
/etc/passwd
/etc/shadow
/etc/gshadow
Marko
  • 227
  • 4
  • 7
  • 15
Jim
  • 1