From a9ba4be1115371b5bea911b11587dce394f0b16a Mon Sep 17 00:00:00 2001 From: nocode Date: Tue, 7 Jul 2026 02:46:01 +0200 Subject: [PATCH] chore(baseline): add file permissions for recovery tools and grub config Add file permission entries for new recovery-related executables and grub configuration: - /usr/local/bin/fws-recovery-session - /usr/local/bin/fws-recovery-gui - /etc/grub.d/42_fws-recovery All entries set to 0:0:755 (root owner, executable). --- configs/baseline/profiledef.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/configs/baseline/profiledef.sh b/configs/baseline/profiledef.sh index d4d8c8a..1ab0b95 100644 --- a/configs/baseline/profiledef.sh +++ b/configs/baseline/profiledef.sh @@ -36,6 +36,9 @@ file_permissions=( ["/usr/local/bin/fws-updates-check"]="0:0:755" ["/usr/local/bin/fws-proton-ge"]="0:0:755" ["/usr/local/bin/fws-recovery"]="0:0:755" + ["/usr/local/bin/fws-recovery-session"]="0:0:755" + ["/usr/local/bin/fws-recovery-gui"]="0:0:755" ["/usr/local/bin/fws-powermenu"]="0:0:755" ["/usr/local/bin/fws-about"]="0:0:755" + ["/etc/grub.d/42_fws-recovery"]="0:0:755" )