diff options
author | Daniel Bertalan <dani@danielbertalan.dev> | 2022-02-25 20:45:29 +0100 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-03-08 23:30:47 +0100 |
commit | a25cc9619d7dfd8e5ec3c4ed12f7abc975ce2f6f (patch) | |
tree | 8b2e97a6092182cb6da78f8e4314aea34d14b21e /Base/etc/fstab | |
parent | 4f89f47acb27ac05debf179a8f37c78462819a58 (diff) | |
download | serenity-a25cc9619d7dfd8e5ec3c4ed12f7abc975ce2f6f.zip |
Base+Meta: Make /usr/local read-write
This directory has to be writable if we want to install ports that have
been built inside Serenity. It's owned by root anyway, so having it be
read-only does not provide many security benefits.
Diffstat (limited to 'Base/etc/fstab')
-rw-r--r-- | Base/etc/fstab | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Base/etc/fstab b/Base/etc/fstab index 4c1f6a35e9..2c8ea0da07 100644 --- a/Base/etc/fstab +++ b/Base/etc/fstab @@ -9,5 +9,6 @@ /var /var bind bind,nodev,nosuid /www /www bind bind,nodev,nosuid /usr/Tests /usr/Tests bind bind,nodev,ro +/usr/local /usr/local bind bind,nodev,nosuid none /tmp tmp nodev,nosuid |