fd850475ea
This patch makes iscsi-boot element support not only just DISTRO_NAME centos7 but also centos and centos-minimal. Change-Id: I8db8b01f35b2e572666badd8d2316d24a5e4287a
14 lines
281 B
Bash
Executable File
14 lines
281 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ ${DIB_DEBUG_TRACE:-0} -gt 0 ]; then
|
|
set -x
|
|
fi
|
|
|
|
set -eu
|
|
set -o pipefail
|
|
|
|
if [[ $DISTRO_NAME =~ "centos" ]]; then
|
|
sed -i -E 's/(GRUB_CMDLINE_LINUX_DEFAULT=")(.+)(")/\1\2 rd.iscsi.firmware=1"/' /etc/default/grub
|
|
grub2-mkconfig -o /boot/grub2/grub.cfg
|
|
fi
|