29759486f0
These services are too chatty for even logrotate -- and double log stuff to /var/log/upstart. Only log STDERR to upstart logs in case the service doesn't start for some reason. Change-Id: Icf180f4fd75e112dc2805b7fdd9494fdbe04aa4b
15 lines
278 B
Plaintext
15 lines
278 B
Plaintext
# Startup script for the monasca_notification
|
|
|
|
description "Monasca Notification daemon"
|
|
start on runlevel [2345]
|
|
|
|
console log
|
|
respawn
|
|
|
|
kill timeout 240
|
|
respawn limit 25 5
|
|
|
|
setgid monasca
|
|
setuid monasca-notification
|
|
exec <%= @virtual_env %>/bin/monasca-notification > /dev/null
|