Skip to content

Commit

Permalink
Revert "blsforme/manager: Use more secure vfat mount options"
Browse files Browse the repository at this point in the history
This reverts commit aaa9a0a.
Long story short, totally breaks moss with EINVAL, and securing can
some later.
  • Loading branch information
ikeycode committed Jul 20, 2024
1 parent aaa9a0a commit 59a8f12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion blsforme/src/manager.rs
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ impl<'a> Manager<'a> {
/// Mount an fat filesystem
#[inline]
fn mount_vfat_partition(&self, source: &Path, target: &Path) -> Result<ScopedMount, Error> {
let options = Some("umask=0077,noexec,nosuid,nodev");
let options: Option<&str> = None;
if !target.exists() {
create_dir_all(target)?;
}
Expand Down

0 comments on commit 59a8f12

Please sign in to comment.