/etc/init/cinder-volume.conf is in cinder-volume 1:2014.1.3-0ubuntu1.1.
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 | description "Cinder volume server"
author "Chuck Short <zulcss@ubuntu.com>"
start on runlevel [2345]
stop on runlevel [!2345]
chdir /var/run
pre-start script
mkdir -p /var/run/cinder
chown cinder:cinder /var/run/cinder
mkdir -p /var/lock/cinder
chown cinder:root /var/lock/cinder
end script
exec start-stop-daemon --start --chuid cinder --exec /usr/bin/cinder-volume \
-- --config-file=/etc/cinder/cinder.conf --log-file=/var/log/cinder/cinder-volume.log
|