006b3e6228
In order to avoid conflict with installing dependencies for IPA from pypi and distribution packages this patch propose installing IPA in a virtual environment. Closes-Bug: #1506792 Change-Id: I6a4c6403813d86f4110e98449ddd874109101b9e
21 lines
368 B
Plaintext
21 lines
368 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
|
|
|
|
pre-start script
|
|
echo Starting Ironic Python Agent
|
|
end script
|
|
|
|
exec /usr/local/bin/ironic-python-agent
|