6f542c7c32
It is standard to IPA to log to the console for easy debugging by watching the server console. Change-Id: I2beb75a99824f0cf1ec88d0ecb54baa4e73f6f15
23 lines
384 B
Plaintext
23 lines
384 B
Plaintext
# ironic-python-agent - Openstack Ironic Python Agnet
|
|
#
|
|
# The ironic-python-agent helps ironic in deploying instances.
|
|
|
|
description "Ironic Python Agnet"
|
|
|
|
start on runlevel [2345]
|
|
stop on runlevel [!2345]
|
|
|
|
respawn
|
|
respawn limit 10 5
|
|
umask 022
|
|
|
|
expect stop
|
|
|
|
console output
|
|
|
|
pre-start script
|
|
echo Starting Ironic Python Agent
|
|
end script
|
|
|
|
exec /usr/local/bin/ironic-python-agent
|