summaryrefslogtreecommitdiffstats
path: root/man/systemd-id128.xml (follow)
Commit message (Collapse)AuthorAgeFilesLines
* man: drop whitespace from final <programlisting> linesZbigniew Jędrzejewski-Szmek2024-11-081-2/+2
| | | | | | In the troff output, this doesn't seem to make any difference. But in the html output, the whitespace is sometimes preserved, creating an additional gap before the following content. Drop it everywhere to avoid this.
* id128: add 'var-partition-uuid' verbLuca Boccassi2024-07-171-0/+12
| | | | | | | As per DPS the UUID for /var/ should be keyed by the local machine-id, which is non-trivial to do in a script. Enhance 'systemd-id128' to take 'var-partition-uuid' as a verb, and if so perform the calculation.
* id128: add --no-pager, --no-legend, --json=/-j switches to systemd-id128 toolLennart Poettering2024-01-111-0/+4
|
* man: use same version in public and system ident.David Tardon2023-12-251-1/+1
|
* man: use <simplelist> for 'See also' sectionsDavid Tardon2023-12-231-5/+5
| | | | | This is just a slight markup improvement; there should be no difference in rendering.
* man: use meaningful titles for <ulink>sZbigniew Jędrzejewski-Szmek2023-11-061-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | As pointed out in https://github.com/systemd/systemd/issues/29814, we need to use phrases are are meaningful on their own, because the man page formatter creates a list at the bottom. With <ulink>see docs</ulink>, we end up with: NOTES: 1. see docs https://some.url/page 2. see docs https://some.url/page2 which is not very useful :( Also, the text inside the tag should not include punctuation. Python helper: from xml_helper import xml_parse for p in glob.glob('../man/*.xml'): t = xml_parse(p) ulinks = t.iterfind('.//ulink') for ulink in ulinks: if ulink.text is None: continue text = ' '.join(ulink.text.split()) print(f'{p}: {text}')
* man/systemd-id128: fix exampleZbigniew Jędrzejewski-Szmek2023-09-061-6/+8
| | | | | | | | | | | | | The example was supposed to show how machine-id/new/machine-id --app-specific/show --app-specific tie together, but the verb was ommitted. I also extended the explanation a bit and used long option form in the first example for more clarity. In the second, more complicated example, the one-letter form is used for brevity. Noticed in post-review: https://github.com/systemd/systemd/pull/28988/commits/b37e8184a5a376749fbf68674ed6d7a4fc9901aa#r1315678438
* man: add version informationZbigniew Jędrzejewski-Szmek2023-09-021-2/+5
| | | | | | I'm keeping this as a separate commit. It is the first time version information is manually added after 6a73a4f7c466887a03c9939300ba6864203b1b3f and we might want to revert this later.
* id128: allow combining --app with showZbigniew Jędrzejewski-Szmek2023-09-021-10/+37
| | | | | | This effectively exposes sd_id128_get_app_specific() on the commandline. Fixes https://github.com/systemd/systemd/issues/27514.
* systemd-id128: properly document the show verbZbigniew Jędrzejewski-Szmek2023-08-291-4/+31
| | | | | | https://github.com/systemd/systemd/issues/27514 requested this functionality among other things, but it is already implemented. The man page was also missing 'show' in the synopsis, so add that, along with an example.
* id128: add option -P to only show valueZbigniew Jędrzejewski-Szmek2023-08-291-0/+8
| | | | | | We have '-P' in systemctl with similar meaning. Partially closes https://github.com/systemd/systemd/issues/27514.
* man: add version infoAbderrahim Kitouni2023-08-291-2/+8
| | | | | | | | This tries to add information about when each option was added. It goes back to version 183. The version info is included from a separate file to allow generating it, which would allow more control on the formatting of the final output.
* treewide: fix "an" before consonant U soundsJoerg Behrmann2023-07-061-1/+1
| | | | | | The article "a" goes before consonant sounds and "an" goes before vowel sounds. This commit changes an to a for UKI, UDP, UTF-8, URL, UUID, U-Label, UI and USB, since they start with the sound /ˌjuː/.
* id128: clarify that the "well-known" IDs are about GPT partition typesLennart Poettering2021-09-101-3/+5
| | | | | At least for now they are all GPT partition types, and we should mention that.
* license: LGPL-2.1+ -> LGPL-2.1-or-laterYu Watanabe2020-11-091-1/+1
|
* systemd-id128: add new verb to print GPT partitions UUIDsZbigniew Jędrzejewski-Szmek2020-01-231-0/+4
|
* Fix several typos in documentationFelipe Sateler2019-12-241-1/+1
| | | | Found by lintian
* man: add entry for systemd-id128 --uuidZbigniew Jędrzejewski-Szmek2019-11-181-0/+10
|
* man: use same header for all filesZbigniew Jędrzejewski-Szmek2019-03-141-1/+1
| | | | | | | The "include" files had type "book" for some raeason. I don't think this is meaningful. Let's just use the same everywhere. $ perl -i -0pe 's^..DOCTYPE (book|refentry) PUBLIC "-//OASIS//DTD DocBook XML V4.[25]//EN"\s+"http^<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"\n "http^gms' man/*.xml
* man: add man page for systemd-id128Zbigniew Jędrzejewski-Szmek2018-10-021-0/+122