fd850475ea
This patch makes iscsi-boot element support not only just DISTRO_NAME centos7 but also centos and centos-minimal. Change-Id: I8db8b01f35b2e572666badd8d2316d24a5e4287a
16 lines
347 B
Bash
Executable File
16 lines
347 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 =~ "centos" ]]; then
|
|
eval declare -A image_elements=($(get_image_element_array))
|
|
if [[ ! "${image_elements[@]}" =~ "dracut-regenerate" ]]; then
|
|
echo "The dracut-regenerate element is required!"
|
|
exit 1
|
|
fi
|
|
fi
|