summaryrefslogtreecommitdiffstats
path: root/docs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* tree-wide: 'allows to' -> 'allows one to'Luca Boccassi2024-05-142-2/+2
| | | | As flagged by Lintian
* docs,man: Avoid some ambiguous uses of "may not"Colin Watson2024-05-081-1/+1
| | | | | | | | | | | | Like much English text, the systemd documentation uses "may not" in the sense of both "will possibly not" and "is forbidden to". In many cases this is OK because the context makes it clear, but in others I felt it was possible to read the "is forbidden to" sense by mistake: in particular, I tripped over "the target file may not exist" in systemd.unit(5) before realizing the correct interpretation. Use "might not" or "may choose not to" in these cases to make it clear which sense we mean.
* docs: add specification for ELF dlopen metadataLuca Boccassi2024-05-081-0/+89
| | | | | | | | | | | Tool to parse it and to use it for Debian packaging available at https://github.com/systemd/package-notes Add 3 levels of priority like Debian does, but using terminology from RPM as it seems more apt. We will very likely never use 'required', as we use this functionality for optional features, but it is worth having it in the spec nonetheless as we want it to be generalized.
* docs: minor improvements to CREDENTIALS.mdAdrian Wannenmacher2024-05-071-3/+4
| | | | | This commit fixes two instances of a miscount. As the number is not important in either case, and seemingly subject to changes, it was removed entirely. Another sentence was reworded to improve readability.
* meson: Set up git submodule update on post checkout as wellDaan De Meyer2024-05-051-1/+2
|
* nspawn, vmspawn, run0: add env var for turning off background tintingLennart Poettering2024-05-021-0/+8
| | | | | | | Some people are just sad, sad lost souls who don't like even the tiniest ray of color in their life. Let's add an env var knob for allowing them to turn the background tinting off, to drive the last bit of color from their life so that they can stay in their grey grey life.
* docs: move information from AUTOPKGTEST.md to test/README.testsuite and ↵Luca Boccassi2024-05-011-109/+0
| | | | | | | delete it This is not information that needs to be published on systemd.io as it's purely internal, so the README is enough
* docs: drop outdated documents about os-release and cgroupsv1Luca Boccassi2024-05-011-10/+0
| | | | cgroupv1 is deprecated, and os-release has a fully fledged manpage
* docs: autopkgtest: refresh the docs with up-to-date informationSkia2024-04-301-8/+8
| | | | @iainlane doesn't work on Ubuntu infrastructure anymore, and `bionic` is still ESM, but not really supported anymore either. `noble`, which is the latest Ubuntu, probably is better for testing `systemd` in 2024, and pinging `qa-help` on IRC is the current official way to contact the team behind Ubuntu's infrastructure.
* docs/DEBUGGING.md: use an underscore in the kernel command line optionnl67202024-04-291-1/+1
| | | | | | | systemd-debug-generator(8) lists it as `systemd.debug_shell`. According to 1d84ad944520fc3e062ef518c4db4e1d3a1866af, kernel command line options should use an underscore instead of a dash.
* docs: update link for SUSE whitepaperspdfnet2024-04-281-1/+1
| | | | Signed-off-by: spdfnet <32593931+spdfnet@users.noreply.github.com>
* treewide: fix a few typos in NEWS, docs, comments, and log messagesDmitry V. Levin2024-04-273-3/+3
|
* docs: PrepareForSuspend() is not a valid signal nameFrantisek Sumsal2024-04-261-1/+1
|
* docs: drop invalid linksFrantisek Sumsal2024-04-262-6/+5
|
* vmspawn: add env var that can extend the qemu cmdlineLennart Poettering2024-04-201-0/+3
| | | | | This is a bit hackish, but really useful sometimes to play around with some qemu switches.
* Merge pull request #32324 from mrc0mmand/more-website-fixesLuca Boccassi2024-04-1833-71/+71
|\ | | | | docs: use absolute links for our pages
| * docs: use absolute links for our pagesFrantisek Sumsal2024-04-1732-70/+70
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Since 56b2970 has proven to be a no-go for us, as it breaks existing links, let's embrace the trailing slash and use absolute links everywhere for our pages. This way we'll get around browser cleverly appending the relative link to the current location (since it ends with a slash), and given our docs/ layout is flat it's not much of a hassle either. Converted using this beauty: $ sed -ri 's/(\[.+\]\()([A-Z_]+\))/\1\/\2/g' *.md Resolves: #32088 (again) and #32310
| * Revert "docs: don't suffix page permalink with a slash"Frantisek Sumsal2024-04-171-1/+1
| | | | | | | | | | | | This breaks existing links with a trailing slash, so it's a no-go. This reverts commit d1a7e030c5daa4a09ee93b8af6b28ecaac5d34d0.
* | doc: fix .ssh credential examplesLennart Poettering2024-04-181-1/+1
| | | | | | | | | | | | | | | | Let's create the .ssh dir with the right perms first. Suggested by @gcb. Fixes: #28172
* | docs: Add note on packages produced by mkosi buildsDaan De Meyer2024-04-181-0/+20
| |
* | Merge pull request #32249 from CodethinkLabs/vmspawn/predicatable_tap_namesYu Watanabe2024-04-181-0/+8
|\ \ | |/ |/| vmspawn: generate predicatable TAP device names and MAC addresses
| * vmspawn: generate predicatable TAP device names and MAC addressesSam Leonard2024-04-151-0/+8
| |
* | Merge pull request #31648 from neighbourhoodie/review-contentZbigniew Jędrzejewski-Szmek2024-04-1758-2226/+2716
|\ \ | | | | | | | | | I did the merge manually to resolve a trivial conflict.
| * | docs/RANDOM_SEEDS: update NetBSD linkhulkoba2024-03-271-1/+1
| | |
| * | chore(docs): change permalink at the Jekyll confighulkoba2024-03-271-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Some of the internal links didn't work. To make them work we had two options: 1. Keep the trailing slash at the jecyll config: The built structure of the html files is one directory for each file, including a html file. This is why a relative link including the `../` is required to get out of the built folder and make it work. e.g. config: permalink: /:title/ HACKING.md: [Coding Style](../CODING_STYLE) 2. Remove the trailing slash, the built structure is like the structure in dev: one html file for each markdown file. In this case, the links as they are implemented just work. e.g. config: permalink: /:title HACKING.md: [Coding Style](CODING_STYLE) We use option 2 :)
| * | docs/JOURNAL_FILE_FORMAT: format texthulkoba2024-03-271-43/+41
| | |
| * | docs/COREDUMP: use internal linkhulkoba2024-03-271-1/+1
| | | | | | | | | | | | for ELF_PACKAGE_METADATA
| * | docs/WRITING_DESKTOP_ENVIRONMENTS: format texthulkoba2024-03-271-9/+28
| | |
| * | docs/WRITING_NETWORK_CONFIG_MANAGERS: format texthulkoba2024-03-271-13/+43
| | |
| * | docs/WRITING_VM_AND_CONTAINER_MANAGERS: format texthulkoba2024-03-271-13/+15
| | |
| * | docs/RANDOM_SEEDS: format texthulkoba2024-03-271-178/+158
| | |
| * | docs/USERDB_AND_DESKTOPS: format texthulkoba2024-03-271-74/+66
| | |
| * | docs/WRITING_DISPLAY_MANAGER: format texthulkoba2024-03-271-10/+30
| | |
| * | docs/USER_GROUP_API: format texthulkoba2024-03-271-113/+100
| | |
| * | docs/PREDICTABLE_INTERACES: format texthulkoba2024-03-271-11/+31
| | |
| * | docs/MY_SERVICE_CANT_GET_REALTIME: format texthulkoba2024-03-271-11/+38
| | |
| * | docs/VIRTUALIZED_TESTING: format texthulkoba2024-03-271-9/+14
| | |
| * | docs/SEPARATE_USR_IS_BROKEN: format texthulkoba2024-03-271-13/+62
| | |
| * | docs/SYSTEMD_FILE_HIERARCHY: format texthulkoba2024-03-271-9/+21
| | |
| * | docs/PORTABLE_SERVICES: format texthulkoba2024-03-271-120/+103
| | |
| * | docs/USER_RECORD: format texthulkoba2024-03-271-475/+417
| | |
| * | docs/PORTABILITY_AND_STABILITY: format texthulkoba2024-03-271-23/+61
| | |
| * | docs/DISTRO_PORTING: format texthulkoba2024-03-271-18/+16
| | |
| * | docs/INHIBITOR_LOCKS: format texthulkoba2024-03-271-9/+63
| | |
| * | docs/USER_NAMES: format texthulkoba2024-03-271-49/+42
| | |
| * | docs/TIPS_AND_TRICKS: format texthulkoba2024-03-271-4/+10
| | |
| * | docs/INCOMPABILITIES: format texthulkoba2024-03-271-1/+5
| | |
| * | docs/HOME_DIRECTORY: format texthulkoba2024-03-271-98/+90
| | |
| * | docs/JOURNAL_EXPORT_FORMATS: format texthulkoba2024-03-271-8/+28
| | |
| * | docs/ELF_PKG_METADATA: format texthulkoba2024-03-271-2/+2
| | |