/etc/init/manila-api.conf is in manila-api 2014.1~git20140220-0ubuntu12.
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 "Manila api 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/manila
chown manila:manila /var/run/manila
mkdir -p /var/lock/manila
chown manila:root /var/lock/manila
end script
exec start-stop-daemon --start --chuid manila --exec /usr/bin/manila-api \
-- --config-file=/etc/manila/manila.conf --log-file=/var/log/manila/manila-api.log
|