2019-06-23 02:17:49 +05:30
|
|
|
# ironic-python-agent - OpenStack Ironic Python Agent
|
|
|
|
#
|
|
|
|
# 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
|
|
|
|
|
2020-08-20 22:39:17 +00:00
|
|
|
exec /usr/local/bin/ironic-python-agent --config-dir /etc/ironic-python-agent.d/
|