From 857b17f090bdf575292f0bd6f5e8e3d753f6b426 Mon Sep 17 00:00:00 2001 From: Antonio Alvarez Feijoo Date: Tue, 14 Dec 2021 12:18:07 +0100 Subject: [PATCH] fix(fips): missing sourcing of dracut-lib Make sure dracut-lib is sourced inside the fips-noboot script. --- modules.d/01fips/fips-noboot.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules.d/01fips/fips-noboot.sh b/modules.d/01fips/fips-noboot.sh index 1c026d9c..f00c2f32 100755 --- a/modules.d/01fips/fips-noboot.sh +++ b/modules.d/01fips/fips-noboot.sh @@ -1,5 +1,7 @@ #!/bin/sh +type getarg > /dev/null 2>&1 || . /lib/dracut-lib.sh + if ! fipsmode=$(getarg fips) || [ "$fipsmode" = "0" ]; then rm -f -- /etc/modprobe.d/fips.conf > /dev/null 2>&1 elif [ -z "$fipsmode" ]; then