1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
#!/bin/sh
### BEGIN INIT INFO
# Provides: ceilometer-agent-notification
# Required-Start: $network $local_fs $remote_fs $syslog
# Required-Stop: $remote_fs
# Should-Start: mongodb rabbitmq-server
# Should-Stop: mongodb rabbitmq-server
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: ceilometer agent notification
# Description: ceilometer agent notification
### END INIT INFO
# Author: Thomas Goirand <zigo@debian.org>
DESC="OpenStack Ceilometer Notification Agent (ceilometer-agent-notification)"
PROJECT_NAME=ceilometer
NAME=${PROJECT_NAME}-agent-notification
export OS_OSLO_MESSAGING_RABBIT__PROCESSNAME=ceilometer-agent-notification
|