diff options
author | Tim Schumacher <timschumi@gmx.de> | 2022-06-30 19:42:36 +0200 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-07-08 12:42:23 +0200 |
commit | 80705a72bde015c824126ea37e55337439b89b76 (patch) | |
tree | 466ed5931649b25eb21bf412182aeeac14f79dbe /Base/usr/share | |
parent | e04155475d7751bb73af3ae2af8715ab3222581a (diff) | |
download | serenity-80705a72bde015c824126ea37e55337439b89b76.zip |
mount: Allow extending `fstab` via drop-in files in `fstab.d`
Diffstat (limited to 'Base/usr/share')
-rw-r--r-- | Base/usr/share/man/man8/mount.md | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Base/usr/share/man/man8/mount.md b/Base/usr/share/man/man8/mount.md index eee65739c6..5f927df657 100644 --- a/Base/usr/share/man/man8/mount.md +++ b/Base/usr/share/man/man8/mount.md @@ -16,7 +16,7 @@ If invoked without any arguments, `mount` prints a list of all currently mounted filesystems. If invoked as `mount -a`, `mount` mounts all the filesystems configured in -`/etc/fstab`. This is normally done on system startup by +`/etc/fstab` and `/etc/fstab.d/*`. This is normally done on system startup by [`SystemServer`(7)](help://man/7/SystemServer). Otherwise, `mount` performs a single filesystem mount. Source should be a path @@ -36,6 +36,7 @@ Additionally, the name `defaults` is accepted and ignored. ## Files * `/etc/fstab` - read by `mount -a` on startup to find out which filesystems to mount. +* `/etc/fstab.d` - directory with drop-in additions to the normal `fstab` file, also read by `mount -a`. * `/proc/df` - read by `mount` to get information about mounted filesystems. ## Examples |