The new policy setting is supposed to be default on.

This commit is contained in:
Cyrus 2021-04-14 14:23:43 -04:00
parent 523bae8f9d
commit b52b8101a6
2 changed files with 2 additions and 1 deletions

View File

@ -473,6 +473,7 @@ public class PolicyPageController extends PageController<NoPageParams> {
// set the policy option and create success message
if (firmwareValidationOptionEnabled) {
policy.setFirmwareValidationEnabled(true);
policy.setIgnoreGptEnabled(true);
successMessage = "Firmware validation enabled";
} else {
policy.setFirmwareValidationEnabled(false);

View File

@ -39,7 +39,7 @@ public final class PCRPolicy extends Policy {
@Column(nullable = false)
private boolean linuxOs = false;
@Column(nullable = false)
private boolean enableIgnoreGpt = false;
private boolean enableIgnoreGpt = true;
private String[] baselinePcrs;