Ich habe folgenden Startjob:
description "posty api"
start on mysql
stop on shutdown
env RACK_ENV=production
setuid vmail
setgid vmail
chdir /opt/posty_api
pre-start script
mkdir -p /var/run/posty
chown -R vmail:root /var/run/posty
end script
exec /usr/local/bin/unicorn -D -c /opt/posty_api/unicorn.rb --env production >> /var/log/posty/upstart.log 2>&1
post-stop exec kill `cat /var/run/posty/unicorn.pid`
respawn
respawn limit 1 10
Um den Ordner in zu erstellen, /var/run
benötige ich Root-Rechte. Wie kann ich einige Teile des Upstart-Jobs als Root und den Dienst selbst als nicht privilegierten Benutzer ausführen?
start on starting posty
. Aber die Protokollierung ist viel besser als meine.