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.

link|improve this question

What happens when you run the command itself in a shell? – Tom Dec 11 '10 at 0:19
Do you have a user named git.log? – Dustin Dec 11 '10 at 3:29
@Tom it does run if I run the command itself. – kayue Dec 11 '10 at 4:30
@Dustin it was a typo, fixed. – kayue Dec 11 '10 at 6:41
You'll want to update the output to write to the absolute path of the log. The tilde (~) is a relative path to YOUR home directory. I don't think this will fix your problem, but you should have it end with ... >> /var/log/git.log – Bryce Dec 12 '10 at 3:41
feedback

2 Answers

up vote 4 down vote accepted

Solution:

*/1 * * * * su -s /bin/sh nobody -c 'cd ~dstrt/www && /usr/local/bin/git -q pull origin master' 
link|improve this answer
feedback

While you do need to figure out how to get the update to work in the first place, you'd be far better off using a hook from the upstream to make it go. You can do this simply with curl from a post-commit hook or if you're using github, just use a post-receive hook on their side.

link|improve this answer
A hook is much cleaner than using cron. Hooks are just scripts, so you can have something like cd /path/to/production && git pull. – Cameron Skinner Dec 11 '10 at 3:35
Can I run post-commit hook as a 'nobody' ? – kayue Dec 11 '10 at 4:31
I tried this script (gist.github.com/737188) but have permission problem because the use running this script has no permission to the target directory – kayue Dec 11 '10 at 6:00
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.