
Partially-implements: blueprint ironic-container Change-Id: I7869c49c851a95c12fffaf426abd6625f3f1a212
11 lines
132 B
Bash
Executable File
11 lines
132 B
Bash
Executable File
#!/bin/bash
|
|
set -o errexit
|
|
|
|
CMD="/usr/bin/ironic-conductor"
|
|
ARGS=""
|
|
|
|
source /opt/kolla/kolla-common.sh
|
|
set_configs
|
|
|
|
exec $CMD $ARGS
|