fix home_noexec_maybe -> most_noexec_maybe

https://github.com/Kicksecure/security-misc/pull/202
This commit is contained in:
Patrick Schleizer 2024-02-22 06:01:00 -05:00
parent 38783faf60
commit 7c7b4b24b4
No known key found for this signature in database
GPG Key ID: CB8D50BB77BB3C48

View File

@ -292,21 +292,21 @@ _root() {
_srv() {
## TODO: new, test
mount_folder="$NEWROOT/srv"
intended_mount_options="nosuid,nodev${home_noexec_maybe}"
intended_mount_options="nosuid,nodev${most_noexec_maybe}"
remount_secure
}
_media() {
## TODO: new, test
mount_folder="$NEWROOT/media"
intended_mount_options="nosuid,nodev${home_noexec_maybe}"
intended_mount_options="nosuid,nodev${most_noexec_maybe}"
remount_secure
}
_mnt() {
## TODO: new, test
mount_folder="$NEWROOT/mnt"
intended_mount_options="nosuid,nodev${home_noexec_maybe}"
intended_mount_options="nosuid,nodev${most_noexec_maybe}"
remount_secure
}