For a new web development project I've configured a shared repo with a post-update hook which automatically pulls updates into the web server virtual root.
#!/bin/sh
cd /srv/www/siteA/ || exit
unset GIT_DIR
git pull hub master
exec git-update-server-info
However, the web server runs suphp which enforces that each file is owned by the user 'www-run'. However since the post-update script runs within the context of the user who initiated the git push, updated files are owned by the user and not www-run. I thought the best solution would be to initiate the git pull as the www-run user using sudo so i updated the sodoers with the following lines ('webmaster' is a group which all git users are a member of):
Defaults:%webmaster !requiretty
%webmaster ALL=(www-run) NOPASSWD: /usr/bin/git
In the post-update script I changed the git pull line to
sudo -u www-run /usr/bin/git pull hub master
But i receive the following error on the client doing the git push
remote: sudo: no tty present and no askpass program specified
Since I have specified that in the defaults that a tty is not required and that no password is required I can't figure out why this is not working.
requirettydefaults to off anyway, so you shouldn't need that line. The error you're seeing would be consistent with that line in sudoers not matching for some reason - just guessing, is it possible that the group is actually calledwebmastersrather thanwebmaster, or that the other user is reallywww-datarather thanwww-runor something? If you add the commandgroupsat the top of your hook script, is the group definitely listed in the output from the remote? – Mark Longair Oct 6 '12 at 11:11