diff options
author | Florian Schmaus <flow@gentoo.org> | 2023-07-07 08:58:52 +0200 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2023-07-08 05:02:56 +0100 |
commit | 0979cb590cd99ecf298fc3de4b0c20d33251b717 (patch) | |
tree | c6d9f503c1ab8554958b1719896ff9fc4fb29284 /share | |
parent | share/fstab: drop reiserfs references and noatime, use defaults (diff) | |
download | baselayout-0979cb590cd99ecf298fc3de4b0c20d33251b717.tar.gz baselayout-0979cb590cd99ecf298fc3de4b0c20d33251b717.tar.bz2 baselayout-0979cb590cd99ecf298fc3de4b0c20d33251b717.zip |
share/fstab: move fstable header right above example entries
Move the fstable table header right above the commented-out example
fstab entries. Also split "<dump/pass>" into "<dump> <pass>", since
those are two different fields (see fstab(5)).
Signed-off-by: Florian Schmaus <flow@gentoo.org>
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'share')
-rw-r--r-- | share/fstab | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/share/fstab b/share/fstab index 7fd7852e..a579fb10 100644 --- a/share/fstab +++ b/share/fstab @@ -4,9 +4,6 @@ # # See the manpage fstab(5) for more information. # - -# <fs> <mountpoint> <type> <opts> <dump/pass> - # # NOTE: Even though we list ext4 as the type here, it will work with ext2/ext3 # filesystems. This just tells the kernel to use the ext4 driver. @@ -16,6 +13,8 @@ # documentation for details on setting a label. To obtain the UUID, use # the blkid(8) command. +# <fs> <mountpoint> <type> <opts> <dump> <pass> + #LABEL=boot /boot ext4 defaults 1 2 #UUID=58e72203-57d1-4497-81ad-97655bd56494 / ext4 defaults 0 1 #LABEL=swap none swap sw 0 0 |