puppet-askbot/templates/celeryd.upstart.conf.erb
2015-01-26 14:24:56 +01:00

12 lines
361 B
Plaintext

description "Askbot celeryd service"
author "Marton Kiss <marton.kiss@gmail.com>"
start on runlevel [2345]
stop on runlevel [016]
kill timeout 30
respawn
script
chdir /srv/askbot-sites/<%= @slot_name %>/config
exec su -s /bin/sh -c 'exec "$0" "$@"' www-data -- /usr/bin/python manage.py celeryd -c 5 --maxtasksperchild=1000 --time-limit=30
end script