[doc] upstart conf for api and scheduler, take 2

This commit is contained in:
Julien Vehent 2015-01-04 15:54:19 -05:00
Родитель cd573aa6ef
Коммит 6c53847a66
2 изменённых файлов: 43 добавлений и 0 удалений

21
conf/upstart/mig-api.conf Normal file
Просмотреть файл

@ -0,0 +1,21 @@
# Mozilla InvestiGator API
description "MIG API"
start on filesystem or runlevel [2345]
stop on runlevel [!2345]
setuid mig
respawn
respawn limit 10 5
umask 022
console none
pre-start script
test /opt/mig-api || { stop; exit 0; }
end script
# Start
exec /opt/mig-api

Просмотреть файл

@ -0,0 +1,22 @@
# Mozilla InvestiGator Scheduler
description "MIG Scheduler"
start on filesystem or runlevel [2345]
stop on runlevel [!2345]
setuid mig
limit nofile 640000 640000
respawn
respawn limit 10 5
umask 022
console none
pre-start script
test /opt/mig-scheduler || { stop; exit 0; }
end script
# Start
exec /opt/mig-scheduler