mirror of
https://github.com/nsacyber/HIRS.git
synced 2024-12-20 21:43:18 +00:00
The new policy setting is supposed to be default on.
This commit is contained in:
parent
523bae8f9d
commit
b52b8101a6
@ -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);
|
||||
|
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user