/etc/init/nova-compute.conf is in nova-compute 2014.1.3-11.
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 22 23 24 25 26 27 | description "OpenStack Compute"
author "Thomas Goirand <zigo@debian.org>"
start on runlevel [2345]
stop on runlevel [!2345]
chdir /var/run
pre-start script
for i in lock run log lib ; do
mkdir -p /var/$i/nova
chown nova /var/$i/nova
done
end script
script
[ -x "/usr/bin/nova-compute" ] || exit 0
DAEMON_ARGS=" --config-file=/etc/nova/nova.conf"
[ -r /etc/default/openstack ] && . /etc/default/openstack
[ -r /etc/default/$UPSTART_JOB ] && . /etc/default/$UPSTART_JOB
[ "x$USE_SYSLOG" = "xyes" ] && DAEMON_ARGS="$DAEMON_ARGS --use-syslog"
[ "x$USE_LOGFILE" != "xno" ] && DAEMON_ARGS="$DAEMON_ARGS --log-file=/var/log/nova/nova-compute.log"
exec start-stop-daemon --start --chdir /var/lib/nova \
--chuid nova:nova --make-pidfile --pidfile /var/run/nova/nova-compute.pid \
--exec /usr/bin/nova-compute -- --config-file=/etc/nova/nova.conf ${DAEMON_ARGS}
end script
|