Merge "Devstack: don't scan /opt, /etc looking for isolinux"

This commit is contained in:
Zuul 2021-09-23 15:19:43 +00:00 committed by Gerrit Code Review
commit 397d61325a
1 changed files with 1 additions and 1 deletions

View File

@ -1803,7 +1803,7 @@ function configure_ironic_conductor {
iniset $IRONIC_CONF_FILE deploy default_boot_option $IRONIC_DEFAULT_BOOT_OPTION
isolinux=$(find -L /usr /opt /etc -type f -name "isolinux.bin" | head -1)
isolinux=$(find -L /usr -type f -name "isolinux.bin" | head -1)
if [[ -n "$isolinux" ]]; then
iniset $IRONIC_CONF_FILE DEFAULT isolinux_bin "$isolinux"
fi