Search
j0ke.net Open Build Service
>
Projects
>
internetx
:
kiwi
:
Appliance
>
dracut
> 0044-dracut.sh-call-dracut-install-with-f-in-FIPS-mode.patch
Sign Up
|
Log In
Username
Password
Cancel
Overview
Repositories
Revisions
Requests
Users
Advanced
Attributes
Meta
File 0044-dracut.sh-call-dracut-install-with-f-in-FIPS-mode.patch of Package dracut
From 847f80b817a0e72d0304c3c46dc61e9ac8740313 Mon Sep 17 00:00:00 2001 From: Harald Hoyer <harald@redhat.com> Date: Mon, 21 Mar 2016 11:56:50 +0100 Subject: [PATCH] dracut.sh: call dracut-install with "-f" in FIPS mode in fips mode, dracut-install was called with "-H" instead of "-f" in FIPS mode missed conversion of commit 26cd262a6a575a50ea384a2ceac6a6829efe8106 --- dracut.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dracut.sh b/dracut.sh index ae8772b4..202a8ac9 100755 --- a/dracut.sh +++ b/dracut.sh @@ -1517,7 +1517,7 @@ if [[ $kernel_only != yes ]]; then if [[ $DRACUT_RESOLVE_LAZY ]] && [[ $DRACUT_INSTALL ]]; then dinfo "*** Resolving executable dependencies ***" find "$initdir" -type f -perm /0111 -not -path '*.ko' -print0 \ - | xargs -r -0 $DRACUT_INSTALL ${initdir:+-D "$initdir"} -R ${DRACUT_FIPS_MODE:+-H} -- + | xargs -r -0 $DRACUT_INSTALL ${initdir:+-D "$initdir"} -R ${DRACUT_FIPS_MODE:+-f} -- dinfo "*** Resolving executable dependencies done***" fi