diff options
author | Ben Wiederhake <BenWiederhake.GitHub@gmx.de> | 2021-01-29 19:54:35 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-02-03 21:23:15 +0100 |
commit | d24e287f8c1852b0747bf3224a342ccc57a44bf1 (patch) | |
tree | 0174b913ab40d9a1df990c0fe40000b0b74c101c /Base/etc/fstab | |
parent | 6503b4b3c131d8cd691128b43f049c2c5f949fc4 (diff) | |
download | serenity-d24e287f8c1852b0747bf3224a342ccc57a44bf1.zip |
Base: Make /www read-write by default
Since it is owned by root anyway, there is no need for 'additional security' to prevent
modification of that directory. This makes it easier to quickly export files from
Serenity. Fixes #5152.
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 4ca46238da..30fd77cc7c 100644 --- a/Base/etc/fstab +++ b/Base/etc/fstab @@ -7,6 +7,7 @@ /home /home bind bind,nodev,nosuid /root /root bind bind,nodev,nosuid /var /var bind bind,nodev,nosuid +/www /www bind bind,nodev,nosuid none /proc proc nosuid none /tmp tmp nodev,nosuid |