Di recente ho configurato un repository git remoto su un server per un'app Web in esecuzione come servizio Upstart. Vorrei utilizzare l'hook post-ricezione per attivare le azioni necessarie per aggiornare il codice dell'applicazione e interrompere, quindi riavviare il servizio di avvio. Questo è il mio repo.git / hooks / file post-ricezione:
#!/bin/bash
export GIT_WORK_TREE=/var/www/current/myapp/
echo "Checking out new files and restarting app"
echo $USER
git checkout -f
sudo /sbin/stop myapp-service
sudo /sbin/start myapp-service
Sulla base delle informazioni che ho letto qui: askUbuntu.com , il modo per ottenere i comandi upstart da eseguire come root è modificare il mio file visudo. Ecco il frammento pertinente:
%sudo ALL=(ALL:ALL) ALL
admin ALL=(ALL:ALL) NOPASSWD: /sbin/start myapp-service /sbin/stop myapp-service
Ma quando spingo sul telecomando, ottengo un output come:
$ git commit -am "test" && git push prod master
[master 59ffccd] test
1 file changed, 1 insertion(+), 1 deletion(-)
Counting objects: 11, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (6/6), done.
Writing objects: 100% (6/6), 544 bytes, done.
Total 6 (delta 4), reused 0 (delta 0)
remote: Checking out new files on production and restarting app
remote: admin
remote:
remote: sudo: no tty present and no askpass program specified
remote: Sorry, try again.
Ho verificato che l'utente corretto stia eseguendo lo script post-ricezione (admin, come indicato sopra).
Qualcuno può aiutarmi a interrompere e quindi avviare il processo Upstart in uno script hook post-ricezione git? Gli script javascript Python, PHP o node.js sarebbero anche accettabili se fossero in grado di eseguire il comando upstart più facilmente di bash (sono un principiante bash)
Ho guardato nel mio registro di autenticazione e questo è quello che ho:
Apr 24 19:35:21 myhost01 sudo: pam_unix(sudo:auth): auth could not identify password for [admin]
Apr 24 19:35:21 myhost01 sudo: pam_unix(sudo:auth): conversation failed
Apr 24 19:35:21 myhost01 sudo: pam_unix(sudo:auth): auth could not identify password for [admin]
Apr 24 19:35:21 myhost01 sudo: pam_unix(sudo:auth): conversation failed
Apr 24 19:35:21 myhost01 sudo: pam_unix(sudo:auth): auth could not identify password for [admin]
Apr 24 19:35:21 myhost01 sudo: admin : 3 incorrect password attempts ; TTY=unknown ; PWD=/home/admin/myapp.git ; USER=root ; COMMAND=/s$
Apr 24 19:35:21 myhost01 sudo: unable to execute /usr/sbin/sendmail: No such file or directory
Apr 24 19:35:21 myhost01 sudo: pam_unix(sudo:auth): conversation failed