2c34214388
TrivialFix Change-Id: I1f03d428c380dfdbde5ef33e7ea43cbf5e9154ce
14 lines
473 B
Bash
14 lines
473 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/pxelinux.0 /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
|