forked from suse-edge/Factory
21 lines
482 B
Bash
21 lines
482 B
Bash
#!/usr/bin/bash
|
|
|
|
export IRONIC_DEPLOYMENT="Conductor"
|
|
|
|
# shellcheck disable=SC1091
|
|
. /bin/configure-ironic.sh
|
|
|
|
# Ramdisk logs
|
|
mkdir -p /shared/log/ironic/deploy
|
|
|
|
run_ironic_dbsync
|
|
|
|
if [[ "$IRONIC_TLS_SETUP" == "true" ]] && [[ "${RESTART_CONTAINER_CERTIFICATE_UPDATED}" == "true" ]]; then
|
|
# shellcheck disable=SC2034
|
|
inotifywait -m -e delete_self "${IRONIC_CERT_FILE}" | while read -r file event; do
|
|
kill $(pgrep ironic)
|
|
done &
|
|
fi
|
|
|
|
exec /usr/bin/ironic-conductor
|