起動時にユーザー「ubuntu」として変更をプルしたいと思います。
upstart ファイルは次のとおりです。
description "Custom startup script"
start on filesystem
script
cd /var/www/gitstuff
git checkout master
git pull
end script
再起動すると、次のログ メッセージが表示されました。
Already on 'master'
Host key verification failed.^M
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
upstart スクリプトを実行すると、root ユーザーとして実行されているように感じます。