Allow processing 'focal' ubuntu release in lvm

* Those would unlock ubuntu-focal builds

Change-Id: I628d17bfcf07fdff7d2290be7db0701095486bbf
This commit is contained in:
azvyagintsev 2020-10-28 16:53:02 +02:00 committed by azvyagintsev
parent 061cc48583
commit f6315c9757
1 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@ if [ 'ubuntu' != $DISTRO_NAME ]; then
exit 1
fi
if [[ ! $DIB_RELEASE =~ (xenial|bionic) ]]; then
echo "Only xenial and bionic are supported for LVM support. The DIB_RELEASE is set to $DIB_RELEASE"
if [[ ! $DIB_RELEASE =~ (xenial|bionic|focal) ]]; then
echo "Only xenial/bionic/focal are supported for LVM support. The DIB_RELEASE is set to $DIB_RELEASE"
exit 1
fi