diff options
author | Harald Hoyer <harald@redhat.com> | 2013-08-20 09:02:48 +0200 |
---|---|---|
committer | Harald Hoyer <harald@redhat.com> | 2013-08-20 09:02:48 +0200 |
commit | 88c86ac7f0c78f579b09ee31586109c7f68c8298 (patch) | |
tree | 10ea107483825932edf9ead72a84432fe54fc116 | |
parent | 55c912ae40cdbb479c4411821a7db943a8cfbc87 (diff) | |
download | dracut-88c86ac7f0c78f579b09ee31586109c7f68c8298.tar.gz dracut-88c86ac7f0c78f579b09ee31586109c7f68c8298.tar.bz2 dracut-88c86ac7f0c78f579b09ee31586109c7f68c8298.zip |
dracut.sh: fixed checking for FIPS mode
-rwxr-xr-x | dracut.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1010,7 +1010,7 @@ mods_to_load="" for_each_module_dir check_module for_each_module_dir check_mount -[[ "$mods_to_load " == *01fips\ * ]] && export DRACUT_FIPS_MODE=1 +dracut_module_included "fips" && export DRACUT_FIPS_MODE=1 if [[ $print_cmdline ]]; then modules_loaded=" " |