Merge "fix iscsi-boot element exiting build even if dracut-regenerate used"

This commit is contained in:
Zuul 2020-02-26 04:05:57 +00:00 committed by Gerrit Code Review
commit 18f46bde30

View File

@ -8,10 +8,8 @@ set -o pipefail
if [[ $DISTRO_NAME = "centos7" ]]; then if [[ $DISTRO_NAME = "centos7" ]]; then
eval declare -A image_elements=($(get_image_element_array)) eval declare -A image_elements=($(get_image_element_array))
found=0 if [[ ! "${image_elements[@]}" =~ "dracut-regenerate" ]]; then
for i in "${!image_elements[@]}"; do echo "The dracut-regenerate element is required!"
[ "$i" = "dracut-regenerate" ] && found=1 exit 1
done fi
[ "$found" = 0 ] && echo "The dracut-regenerate element is required!" && exit 1
fi fi