From 7f10c483b6abcc8be42cf246bbdade264be68228 Mon Sep 17 00:00:00 2001 From: Antonio Alvarez Feijoo Date: Tue, 14 Dec 2021 12:14:41 +0100 Subject: [PATCH] fix(fips): wrong error message When /dev/urandom cannot be created, the error message displays /dev/random instead. --- modules.d/01fips/module-setup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules.d/01fips/module-setup.sh b/modules.d/01fips/module-setup.sh index 37334b81..8860159d 100755 --- a/modules.d/01fips/module-setup.sh +++ b/modules.d/01fips/module-setup.sh @@ -78,7 +78,7 @@ install() { } [ -c "${initdir}"/dev/urandom ] || mknod "${initdir}"/dev/urandom c 1 9 \ || { - dfatal "Cannot create /dev/random" + dfatal "Cannot create /dev/urandom" dfatal "To create an initramfs with fips support, dracut has to run as root" return 1 }