79715dd750
First, this change preconfigures IPA to use a configdir. This will permit deployers to add or modify IPA configuration in elements. This change was a prerequisite to adding additional DIB elements which require configuration. Additionally, this adds a DIB element to configure TLS support for IPA's API. If added to a ramdisk build with no configuration, it will create a self-signed certificate and configure IPA to use it. It also exposes various environment variables to allow deployers to use preexisting certificates or CA files. Change-Id: Ibf88937766fa32f72b90ca81f9e8fba3515b6e33
23 lines
425 B
Plaintext
23 lines
425 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 --config-dir /etc/ironic-python-agent.d/
|