Actually, we have added an option in the config file to tell svn which
folder should be used for its configuration. Therefore, you can add a
'.subversion' folder somewhere on the file system of the web server
(eg. /home/myuser/.subversion) and points to that folder in
fredistrano's configuration file
([FREDISTRANO_INST_DIR]/app/config/config.php) as follow:
$config['Subversion'] = array(
'user' => null,
//default subversion login
'passwd' => null,
//default subversion password
'configDirectory' => /home/myuser/.subversion,
//default subversion configuration directory
'parseResponse' => true,
//activate the command response parsing
);
Just make sure that this folder contains svn configuration files
(servers, config, and auth) and is at least readable by your user
'nobody' (if writable, fredistrano will be able to save authentication
cache).
Afterwards, it should no longer look for /root/.subversion/ stuff.
I hope it will help you... Don't hesitate to contact us for further
details or investigations.
euphrate_ylb