/etc/init/oslo-messaging-zmq-receiver.conf is in oslo-messaging-zmq-receiver 4.6.1-2ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | # vim:set ft=upstart ts=2 et:
description "Oslo Messaging ZeroMQ Receiver"
author "James Page <james.page@ubuntu.com>"
start on runlevel [2345]
stop on runlevel [!2345]
env USER="oslo"
env GROUP="oslo"
chdir /var/run
umask 007
respawn
pre-start script
mkdir -p /var/run/openstack
chown -R $USER:$GROUP /var/run/openstack
end script
exec start-stop-daemon --start --chuid $USER --exec /usr/bin/oslo-messaging-zmq-receiver \
-- --config-file=/etc/oslo/oslo-messaging.conf
|