
Copies "ironic-agent" element from DIB and addition of a new bash script to build the image using DIB. Change-Id: If392f793ed1b5d902b541fe89299648fae16e427 Task: 30072 Story: 2005114
23 lines
384 B
Plaintext
23 lines
384 B
Plaintext
# 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
|
|
|
|
exec /usr/local/bin/ironic-python-agent
|