5855a07212
PXE files should be copied after volume mount to avoid overwrite. Change-Id: I023cc316e6873abd658478dfa05be839e44a80c7 Closes-bug: #1538164
15 lines
445 B
Bash
15 lines
445 B
Bash
#!/bin/bash
|
|
|
|
# Bootstrap and exit if KOLLA_BOOTSTRAP variable is set. This catches all cases
|
|
# of the KOLLA_BOOTSTRAP variable being set, including empty.
|
|
if [[ "${!KOLLA_BOOTSTRAP[@]}" ]]; then
|
|
chown -R ironic: /tftpboot
|
|
for pxe_file in /var/lib/tftpboot/chain.c32 /usr/lib/syslinux/pxelinux.0 /usr/lib/syslinux/chain.c32; do
|
|
if [[ -e "$pxe_file" ]]; then
|
|
cp "$pxe_file" /tftpboot
|
|
fi
|
|
done
|
|
exit 0
|
|
fi
|
|
|