Hi all I created this cron command: /usr/bin/svn --username USERNAME --password PASS up /var/www/clients/clientX/webX/web > /dev/null Full cron is allowed for webX. In syslog is corresponding line: Dec 9 01:00:01 SERVER CRON[3920]: (webX) CMD (/usr/bin/svn --username USERNAME --password PASS up /var/www/clients/clientX/webX/web > /dev/null) but svn up never done. If I run this command from command line as user webX so it works as expected. I tested to save output to file but empty file was created. What I have to do for creating sucessfully svn cronjob command? Thanks SupuS
and when you run: Code: sudo -u webx /usr/bin/svn --username USERNAME --password PASS up /var/www/clients/clientX/webX/web > /dev/null on the shell, then the command works?
Hi till, thanks for replay. Yes it works. It complains about permissions only: Code: svn: warning: Can't open file '/root/.subversion/servers': Permission denied I don't know if this information helps but .subversion directory also was created for user webX and for SHELLUSER of this web: /var/www/clients/clientX/webX/home/webX/.subversion /var/www/clients/clientX/webX/home/SHELLUSER/.subversion SupuS