Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2020-04-23 | man: Fix typo "multiplied with" -> "multiplied by" | Niklas Hambüchen | 1 | -1/+1 | |
2020-04-22 | sd-bus: Add sd_bus_message_at_end docs | Daan De Meyer | 3 | -0/+88 | |
2020-04-22 | core: make sure we don't get confused when setting TERM for a tty fd | Lennart Poettering | 1 | -4/+5 | |
Fixes: #15344 | |||||
2020-04-22 | man: document that VirtualEthernetExtra= has nothing to do with Bridge= | Lennart Poettering | 1 | -12/+10 | |
Fixes: #15402 | |||||
2020-04-22 | man: document the new --resolv-conf= options | Lennart Poettering | 1 | -23/+54 | |
2020-04-22 | nspawn: beef up --resolve-conf= modes | Lennart Poettering | 3 | -16/+37 | |
Let's add flavours for copying stub/uplink resolv.conf versions. Let's add a more brutal "replace" mode, where we'll replace any existing destination file. Let's also change what "auto" means: instead of copying the static file, let's use the stub file, so that DNS search info is copied over. Fixes: #15340 | |||||
2020-04-22 | resolve: move resolv.conf path definitions to shared header | Lennart Poettering | 2 | -9/+9 | |
That way we can use it from nspawn. | |||||
2020-04-22 | core: add debug log when a job in the activation queue is not runnable | Luca Boccassi | 1 | -2/+10 | |
When a job is skipped due its dependencies not being ready, log a debug message saying what is holding it back. This was very useful with transient units timing out to figure out where the problem was. | |||||
2020-04-22 | test: correctly clean up test artifacts | Frantisek Sumsal | 1 | -1/+2 | |
Remove the artifact files indicating test result (testok, failed, and skipped) just before running the test so we always get the latest and most relevant result instead of incorrectly consuming previous results. Discovered in https://github.com/systemd/systemd/pull/15378#issuecomment-616801873 | |||||
2020-04-22 | util: return the correct correct wd from inotify helpers | Balaji Punnuru | 1 | -6/+8 | |
We need to propagate the acquired watch descriptors because our callers are counting on them. [Lennart: this is split out of #15381 and simplified] | |||||
2020-04-22 | core: minor error code handling fixes | Lennart Poettering | 1 | -2/+2 | |
2020-04-22 | sd-bus: Clarify sd_bus_list_names results ownership | Daan De Meyer | 1 | -4/+3 | |
2020-04-22 | sd-bus: Add sd_bus_message_read_strv docs | Daan De Meyer | 4 | -1/+94 | |
2020-04-21 | test: verify RoutesToDNS= is independent of UseGateway= | Dan Streetman | 4 | -9/+12 | |
2020-04-21 | tree-wide: fix spelling errors | Frantisek Sumsal | 40 | -57/+57 | |
Based on a report from Fossies.org using Codespell. Followup to #15436 | |||||
2020-04-21 | tree-wide: formatting tweaks reported by Coccinelle | Frantisek Sumsal | 5 | -11/+23 | |
2020-04-21 | network: honor SetDNSRoutes= even if UseGateway=False | Dan Streetman | 1 | -65/+64 | |
2020-04-21 | test: modify/add tests for UseRoutes= and UseGateway= configuration | Dan Streetman | 7 | -29/+48 | |
The last commit changed the UseGateway= default to the value of UseRoutes= so the tests need to check for all combinations of the two parameters. | |||||
2020-04-21 | network: change UseGateway= default to UseRoutes= setting | Dan Streetman | 4 | -5/+9 | |
Anyone previously using the UseRoutes=false parameter expected their dhcp4-provided gateway route to be ignored, as well. However, with the introduction of the UseGateway= parameter, this is no longer true. In order to keep backwards compatibility, this sets the UseGateway= default value to whatever UseRoutes= has been set to. | |||||
2020-04-21 | sd-bus: Add sd_bus_list_names docs | Daan De Meyer | 3 | -0/+113 | |
2020-04-21 | test: drop Disk (Size|Free|Floor|Ceiling) fields prior comparing | Frantisek Sumsal | 1 | -1/+8 | |
The disk attributes can take some time to update on certain filesystems, so let's strip them from inputs of both `homectl` and `userdbctl` before comparing them to avoid unexpected fails. Also, switch from `cmp` to `diff` to make a potential test fail a bit more debuggable. Fixes: #14755 | |||||
2020-04-21 | update TODO | Lennart Poettering | 1 | -0/+3 | |
2020-04-21 | sd-bus: Add sd_bus_set/is_monitor docs | Daan De Meyer | 3 | -7/+38 | |
2020-04-21 | sd-bus: Rewrap sd_bus_set_server docs at 109 columns | Daan De Meyer | 1 | -32/+29 | |
2020-04-21 | core: add log_get_max_level check optimization in log_unit_full | Luca Boccassi | 1 | -2/+3 | |
Just as log_full already does, check if the log level would result in logging immediately in the macro in order to avoid doing unnecessary work that adds up in hot spots. | |||||
2020-04-21 | core: implement generic log control API in PID1 too | Lennart Poettering | 3 | -0/+20 | |
It has slightly different setters in place, so it needs some special love, which is easy enough though. | |||||
2020-04-21 | core: use generic implementations of log level/target bus propertier getters | Lennart Poettering | 1 | -25/+3 | |
The setters are slightly different, hence keep them as they are for now. | |||||
2020-04-21 | tree-wide: implement new log control API dbus interface in all our daemons | Lennart Poettering | 10 | -0/+50 | |
2020-04-21 | resolved: replace private log level control API with generic one | Lennart Poettering | 2 | -57/+9 | |
The property was just added, let's replace it again. Given that it was never released this should not be an API breakage. | |||||
2020-04-21 | log-control-api: add generic D-Bus interface for querying/setting log ↵ | Lennart Poettering | 3 | -2/+140 | |
level/target Let's define a new, generic bus interface that any daemon can implement for querying/setting the log level. We can turn this into something more powerful later on, but for now, only expose three properties: the log level, log target and the syslog identifier (with the former two being writable). This is supposed to be generic, so that it can be implemented by 3rd party daemons too, eventually. | |||||
2020-04-21 | core: automatically add udev dependency for units using RootImage= | Lennart Poettering | 3 | -0/+13 | |
We use udev to wait for /dev/loopX devices to be fully proped hence we need an implicit ordering dependency on it, for RootImage= to work reliably in early boot, too. Fixes: #14972 | |||||
2020-04-21 | man: document how to get the boot menu with zero time-out | Lennart Poettering | 1 | -2/+13 | |
Fixes: #15125 | |||||
2020-04-21 | man: add SD_HWDB_FOREACH_PROPERTY with an example | Zbigniew Jędrzejewski-Szmek | 3 | -1/+57 | |
2020-04-21 | man: add description of all the sd-hwdb funtions | Zbigniew Jędrzejewski-Szmek | 4 | -0/+313 | |
2020-04-21 | man: add markers to put all dbus entities in the directives index | Zbigniew Jędrzejewski-Szmek | 8 | -1/+3725 | |
Follow-up for f92c8d1c67bcdeba097e3203d8aafe3a31230ada. directives.index: - This index contains 3398 entries in 19 sections, referring to 333 individual + This index contains 4316 entries in 19 sections, referring to 333 individual | |||||
2020-04-21 | man: run systemd1(5) through the updater | Zbigniew Jędrzejewski-Szmek | 1 | -751/+5118 | |
For some reason I must've forgotten this page in 4fb222c4b2. | |||||
2020-04-21 | man: add sd_j_open_namespace as refname | Zbigniew Jędrzejewski-Szmek | 2 | -1/+3 | |
This was forgotten in 241c8f67f65a1051068a1728daaca5bc49183c69. | |||||
2020-04-21 | check-api-docs: sd_journal_open_container is deprecated | Zbigniew Jędrzejewski-Szmek | 1 | -0/+1 | |
2020-04-21 | man: document sd_journal_*_with_location | Zbigniew Jędrzejewski-Szmek | 2 | -14/+81 | |
2020-04-21 | sd-bus: Rewrap sd_bus_set_close_on_exit + small fixes | Daan De Meyer | 2 | -24/+42 | |
2020-04-21 | sd-bus: Add sd_bus_get_scope/tid/unique_name docs | Daan De Meyer | 3 | -1/+62 | |
2020-04-20 | sd-bus: Rewrap sd_bus_set_description docs | Daan De Meyer | 1 | -39/+35 | |
2020-04-20 | sd-bus: sd_bus_get_fd docs typo fix | Daan De Meyer | 1 | -1/+1 | |
2020-04-20 | update-dbus-docs: automatically add variablelist for introspected items | Jérémy Rosen | 2 | -2/+79 | |
Add a <variablelist/> tag after every programlisting we auto-generate that will be read by make-directive-index to cross-reference all dbus elements. | |||||
2020-04-20 | sd-bus: Rewrap sd_bus_get_fd docs | Daan De Meyer | 1 | -51/+61 | |
2020-04-20 | sd-bus: Small sd_bus_set_server doc fix | Daan De Meyer | 1 | -1/+2 | |
2020-04-20 | sd-bus: Add sd_bus_get/set_exit_on_disconnect docs | Daan De Meyer | 3 | -2/+107 | |
2020-04-20 | sd-bus: Add sd_bus_is_server + sd_bus_set/is_bus_client docs | Daan De Meyer | 3 | -4/+60 | |
2020-04-20 | make-directive-index: allow variablelist to specify an element to index | Jérémy Rosen | 1 | -0/+7 | |
This commit looks for a new "extra-ref" attribute in <variablelist> If this attribute is specified, its content will be index as pointing to the current man-page in systemd.directives | |||||
2020-04-20 | make-directive-index: allow pages to specify the path to search | Jérémy Rosen | 1 | -1/+2 | |
So far, make-directive-index would look for ./valistentry/term/varname for elements to add to the directive man page. This commit allows to specify xpath= in the varlist directive to tell the generator what to look for. |