diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2021-11-18 15:16:20 +0100 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2021-11-19 18:49:46 +0100 |
commit | 0ccc588c2f2db432e90eacfd8ec30cd6244cfeb2 (patch) | |
tree | 7d90a8554a00b272bd02e715eecd64196f9db621 /tools | |
parent | shared/gpt: fix bit-flip in LoongArch root partition UUID (diff) | |
download | systemd-0ccc588c2f2db432e90eacfd8ec30cd6244cfeb2.tar.xz systemd-0ccc588c2f2db432e90eacfd8ec30cd6244cfeb2.zip |
docs: document the partition UUID used by homed
Diffstat (limited to 'tools')
-rw-r--r-- | tools/list-discoverable-partitions.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tools/list-discoverable-partitions.py b/tools/list-discoverable-partitions.py index 30e37611a8..e9a3dce11d 100644 --- a/tools/list-discoverable-partitions.py +++ b/tools/list-discoverable-partitions.py @@ -46,6 +46,7 @@ TYPES = { 'TMP': 'Temporary Data Partition', 'SWAP': 'Swap', 'HOME': 'Home Partition', + 'USER_HOME': 'Per-user Home Partition', 'LINUX_GENERIC': 'Generic Linux Data Partition', 'XBOOTLDR': 'Extended Boot Loader Partition', } @@ -126,6 +127,10 @@ DESCRIPTIONS = { '<tt>tmpfs</tt> and does not require a partition on disk. In some cases it might be ' 'desirable to make `/tmp/` persistent too, in which case it is recommended to make it ' 'a symlink or bind mount to `/var/tmp/`, thus not requiring its own partition type UUID.'), + 'USER_HOME': ( + 'Any native, optionally in LUKS', + 'A home partition of a user, managed by ' + '[`systemd-homed`](https://www.freedesktop.org/software/systemd/man/systemd-homed.html).'), 'LINUX_GENERIC': ( 'Any native, optionally in LUKS', 'No automatic mounting takes place for other Linux data partitions. This partition type ' |