db713fdf2d
Splits the install.d into source-install and package-install in order to allow building from a distro packaged version of ironic-python-agent. Change-Id: I17513c29efd8c199e07ac1ef20ea5d7456585413
21 lines
362 B
Plaintext
Executable File
21 lines
362 B
Plaintext
Executable File
# 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
|
|
|
|
pre-start script
|
|
echo Starting Ironic Python Agnet
|
|
end script
|
|
|
|
exec /usr/bin/ironic-python-agent
|