From: Harald Hoyer Date: Mon, 29 Apr 2013 09:34:26 +0000 (+0200) Subject: fips: do not fail immediatly after loading the crypto modules X-Git-Tag: 028~58 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=26a077fc7e5a381284a9b474acdf22a58fb47dda;p=thirdparty%2Fdracut.git fips: do not fail immediatly after loading the crypto modules Fail only if tcrypt insmod failed. --- diff --git a/modules.d/01fips/fips.sh b/modules.d/01fips/fips.sh index ce3e49cb1..0095416ab 100755 --- a/modules.d/01fips/fips.sh +++ b/modules.d/01fips/fips.sh @@ -63,7 +63,7 @@ do_fips() info "Loading and integrity checking all crypto modules" for module in $FIPSMODULES; do if [ "$module" != "tcrypt" ]; then - modprobe ${module} || return 1 + modprobe ${module} fi done info "Self testing crypto algorithms"