Skip to content

Commit

Permalink
Remove sys mount
Browse files Browse the repository at this point in the history
  • Loading branch information
romac committed Jan 16, 2025
1 parent aea9ab5 commit f471fb4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/cargo-maelstrom.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ enable_writable_file_system = true
# This layer just includes files and directories for mounting the following
# file-systems and devices.
layers = [
{ stubs = [ "/{proc,sys,tmp,etc}/", "/dev/{full,null,random,urandom,zero}" ] },
{ stubs = [ "/{proc,tmp,etc}/", "/dev/{full,null,random,urandom,zero}" ] },
{ paths = ["/etc/resolv.conf"], follow_symlinks = true },
]

Expand All @@ -36,7 +36,7 @@ layers = [
mounts = [
{ type = "tmp", mount_point = "/tmp" },
{ type = "proc", mount_point = "/proc" },
{ type = "sys", mount_point = "/sys" },
# { type = "sys", mount_point = "/sys" },
{ type = "devices", devices = ["full", "null", "random", "urandom", "zero"] },
]

Expand Down

0 comments on commit f471fb4

Please sign in to comment.