I currently have an svn server running on a machine to which multiple users have root access. For the svn repository I want to use per-directory access control. So I user the mod_dav module with apache and specify permissions in /etc/svn-access-file
The problem is that since multiple users have root access, then can potentially modify this file to access content that they shouldn’t be able to. Is there a way to restrict access or prevent users from modifying the svn-access-file without disabling root access for everyone else?
Thanks,
Gaurav
You can set it to be readonly, then users will need to set rw before modifying. That will deal with accidents, but not with determined users. As soon as user is root all bets are off.