From f6d1346e2bde51cd70bc60246c0bfba923c00c3d Mon Sep 17 00:00:00 2001 From: Patrick Schleizer Date: Sun, 22 Oct 2023 16:22:08 -0400 Subject: [PATCH] fix --- etc/default/grub.d/40_remmount-secure.cfg | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/etc/default/grub.d/40_remmount-secure.cfg b/etc/default/grub.d/40_remmount-secure.cfg index 76e9f45..845ca46 100644 --- a/etc/default/grub.d/40_remmount-secure.cfg +++ b/etc/default/grub.d/40_remmount-secure.cfg @@ -4,13 +4,13 @@ ## https://www.kicksecure.com/wiki/Security-misc#Remount_Secure ## Disable Remount Secure. -#GRUB_CMDLINE_LINUX="$GRUB_CMDLINE_LINUX remountsecure="0" +#GRUB_CMDLINE_LINUX="$GRUB_CMDLINE_LINUX remountsecure=0" ## Re-mount with nodev, nosuid only. -#GRUB_CMDLINE_LINUX="$GRUB_CMDLINE_LINUX remountsecure="1" +#GRUB_CMDLINE_LINUX="$GRUB_CMDLINE_LINUX remountsecure=1" ## Re-mount with nodev, nosuid and most with noexec except for /home. -#GRUB_CMDLINE_LINUX="$GRUB_CMDLINE_LINUX remountsecure="2" +#GRUB_CMDLINE_LINUX="$GRUB_CMDLINE_LINUX remountsecure=2" ## Re-mount with nodev, nosuid and all with noexec including /home. -#GRUB_CMDLINE_LINUX="$GRUB_CMDLINE_LINUX remountsecure="3" +#GRUB_CMDLINE_LINUX="$GRUB_CMDLINE_LINUX remountsecure=3"