853e13c6c3
There is an use of get_image_element_array on the environment.d phase, for the iscsi-boot element. This function is not available on that step. So moving the check at next step, extra-data-d, where it is available. Change-Id: I89cfe565492142c2f7962109360fcbcebadfd469
18 lines
397 B
Bash
Executable File
18 lines
397 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ ${DIB_DEBUG_TRACE:-1} -gt 0 ]; then
|
|
set -x
|
|
fi
|
|
set -eu
|
|
set -o pipefail
|
|
|
|
if [[ $DISTRO_NAME = "centos7" ]]; then
|
|
eval declare -A image_elements=($(get_image_element_array))
|
|
found=0
|
|
for i in "${!image_elements[@]}"; do
|
|
[ "$i" = "dracut-regenerate" ] && found=1
|
|
done
|
|
[ "$found" = 0 ] && echo "The dracut-regenerate element is required!" && exit 1
|
|
|
|
fi
|