Sebastian Geib wrote: > *** LOCAL SCM ERROR: svn: Can't open file '/root/.subversion/servers': > Permission denied > *** Local scm command failed
This means that Webistrano failed during accessing SVN locally (on the server running Webistrano, not the remote one). Capistrano needs to query the revision number that is going to be deployed. > I don't quite understand why it is trying to access the servers file > in root's .subversion folder. Although I even created the sub folder > world writeable just to be sure. use_sudo is set to false so I don't > know, why it even bothers to access the file in root's homedir. > Its the local root account. How is Webistrano started? If you did something like: $ su admin admin> mongrel_rails start Then all environment variables ($HOME !) still point to root. You need to use the `-` argument of su in order to change the env too: $ su - admin admin> mongrel_rails start Jonathan -- Jonathan Weiss http://blog.innerewut.de http://twitter.com/jweiss --~--~---------~--~----~------------~-------~--~----~ To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/capistrano -~----------~----~----~----~------~----~------~--~---
