/etc/init/ironic-conductor.conf is in ironic-conductor 2014.1~rc1-0ubuntu1.
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 "Ironic conductor"
author "Chuck Short <zulcss@ubuntu.com>"
start on runlevel [2345]
stop on runlevel [!2345]
chdir /var/run
pre-start script
mkdir -p /var/run/ironic
chown ironic:root /var/run/ironic/
mkdir -p /var/lock/ironic
chown ironic:root /var/lock/ironic/
end script
exec start-stop-daemon --start --chuid ironic --exec /usr/bin/ironic-conductor -- --config-file=/etc/ironic/ironic.conf
|