903b0ff211
* Mount system folder in ironic-conductor * Add package need in ironic-conductor * Fix the log path issue * Add ironic sudoer in ironic-base * Fix credential issue * Do not start nova-compute when enable ironic Closes-Bug: #1629334 Change-Id: If9d478c6513de37465403d458a88cf0da7ebd8a6
13 lines
236 B
Bash
13 lines
236 B
Bash
#!/bin/bash
|
|
|
|
LOG_PATH=/var/log/kolla/ironic
|
|
|
|
if [[ ! -d "${LOG_PATH}" ]]; then
|
|
mkdir -p "${LOG_PATH}"
|
|
fi
|
|
if [[ $(stat -c %a "${LOG_PATH}") != "755" ]]; then
|
|
chmod 755 "${LOG_PATH}"
|
|
fi
|
|
|
|
. /usr/local/bin/kolla_ironic_extend_start
|