From 434c19433eccec3f6f041605c49ac67e836c0e5d Mon Sep 17 00:00:00 2001 From: Bruce Leidl Date: Sat, 5 Jan 2019 20:25:28 -0500 Subject: [PATCH] enable signature verification by default --- citadel-install/src/installer.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/citadel-install/src/installer.rs b/citadel-install/src/installer.rs index 5b6dc37..022b3cd 100644 --- a/citadel-install/src/installer.rs +++ b/citadel-install/src/installer.rs @@ -38,7 +38,7 @@ const LUKS_PASSPHRASE_FILE: &str = "/run/installer/luks-passphrase"; const DEFAULT_ARTIFACT_DIRECTORY: &str = "/run/images"; -const KERNEL_CMDLINE: &str = "add_efi_memmap intel_iommu=off cryptomgr.notests rcupdate.rcu_expedited=1 rcu_nocbs=0-64 tsc=reliable no_timer_check noreplace-smp i915.fastboot=1 citadel.nosignatures quiet splash"; +const KERNEL_CMDLINE: &str = "add_efi_memmap intel_iommu=off cryptomgr.notests rcupdate.rcu_expedited=1 rcu_nocbs=0-64 tsc=reliable no_timer_check noreplace-smp i915.fastboot=1 quiet splash"; pub struct Installer { install_syslinux: bool,