summaryrefslogtreecommitdiffstats
path: root/man/systemd.automount.xml (unfollow)
Commit message (Collapse)AuthorFilesLines
2020-04-23sd-bus: Add sd_bus_send_to docsDaan De Meyer3-17/+31
2020-04-23home: fix strv NUL terminationLennart Poettering1-1/+1
Fixes: #15559
2020-04-23networkd: don't do lldp rx nor tx on bond devicesLennart Poettering2-5/+10
Fixes: #15146
2020-04-23man: add a description of handling of single-label namesZbigniew Jędrzejewski-Szmek1-29/+54
It turns out that our man page didn't describe the handling of single-label names almost at all. This probably adds to the confusion regarding the subject. So let's first describe what our current implementation is doing. Quoting https://www.iab.org/documents/correspondence-reports-documents/2013-2/iab-statement-dotless-domains-considered-harmful/: > Applications and platforms that apply a suffix search list to a single-label > name are in conformance with IETF standards track RFCs. Furthermore, > applications and platforms that do not query DNS for a TLD are in conformance > with IETF standards track recommendations Current behaviour is in line with that recommendation. For #13763.
2020-04-23sd-bus: Add sd_bus_message_peek_type docsDaan De Meyer3-35/+49
2020-04-23sd-bus: Add sd_bus_message_open/close/enter/exit_container docsDaan De Meyer7-2/+221
2020-04-23sd-bus: Fix typo in sd_bus_message_append_array docsDaan De Meyer1-1/+1
2020-04-23man: document binfmt's new --unregister switchLennart Poettering1-0/+8
2020-04-23binfmt: also unregister binfmt entries from unitLennart Poettering2-2/+15
We unregister binfmt_misc twice during shutdown with this change: 1. A previous commit added support for doing that in the final shutdown phase, i.e. when we do the aggressive umount loop. This is the robust thing to do, in case the earlier ("clean") shutdown phase didn't work for some reason. 2. This commit adds support for doing that when systemd-binfmt.service is stopped. This is a good idea so that people can order mounts before the service if they want to register binaries from such mounts, as in that case we'll undo the registration on shutdown again, before unmounting those mounts. And all that, just because of that weird "F" flag the kernel introduced that can pin files... Fixes: #14981
2020-04-23binfmt: modernize code a bitLennart Poettering1-7/+6
Let's just copy out the bit of the string we need, and let's make sure we refuse rules called "status" and "register", since those are special files in binfmt_misc's file system.
2020-04-23shutdown: unregister all binfmt_misc entries before entering shutdown loopLennart Poettering1-0/+2
Apparently if the new "F" flag is used they might pin files, which blocks us from unmounting things. Let's hence clear this up explicitly. Before entering our umount loop. Fixes: #14981
2020-04-23shared: add common helper for unregistering all binfmt entriesLennart Poettering3-0/+39
2020-04-23update TODOLennart Poettering1-0/+2
2020-04-23shared: add NULL callback check in one more placeZbigniew Jędrzejewski-Szmek1-18/+13
Follow-up for 9f65637308.
2020-04-23core: fix unused variable warning when !HAVE_SECCOMPZbigniew Jędrzejewski-Szmek1-2/+2
2020-04-23udev: use STR_IN_SET() wher eit makes senseLennart Poettering1-5/+1
2020-04-23udev: prepare memory for extra NUL termination for NULSTRLennart Poettering1-1/+3
Fixes: #15162
2020-04-23shared: Don't try calling NULL callback in bus_wait_for_units_clearBalint Reczey1-1/+2
BugLink: https://bugs.launchpad.net/bugs/1870930