I was trying to create a cronjob to create a task that do git pull every minutes so my production site is sync with my master branch.
The git pull need to be done by user nobody, due to the permission problem. However it seems that the nobody account doesn't allow run any command. So I have to create tasks with the root account.
Following are the code I tried:
*/1 * * * * su -s /bin/sh nobody -c 'cd ~heilee/www && git pull -q origin master' >> ~/git.log
It doesn't seems working, and I don't know how to debug it.
Could anyone help?
UPDATE1: the command itself is correct. I can run it correctly.
git.log? – Dustin Dec 11 '10 at 3:29... >> /var/log/git.log– Bryce Dec 12 '10 at 3:41