Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-09-09 | tree-wide: drop {} from one-line if blocks | Lennart Poettering | |
Patch via coccinelle. | |||
2015-09-09 | tree-wide: make use of log_error_errno() return value | Lennart Poettering | |
Turns this: r = -errno; log_error_errno(errno, "foo"); into this: r = log_error_errno(errno, "foo"); and this: r = log_error_errno(errno, "foo"); return r; into this: return log_error_errno(errno, "foo"); | |||
2015-09-09 | tree-wide: don't do assignments within if checks | Lennart Poettering | |
Turn this: if ((r = foo()) < 0) { ... into this: r = foo(); if (r < 0) { ... | |||
2015-09-09 | tree-wide: drop redundant if checks before safe_close() | Lennart Poettering | |
Replace this: if (fd >= 0) safe_close(fd); by this: safe_close(fd); | |||
2015-09-09 | tree-wide: make more code use safe_close() | Lennart Poettering | |
Replace this: close(fd); fd = -1; write this: fd = safe_close(fd); | |||
2015-09-09 | tree-wide: use coccinelle to patch a lot of code to use mfree() | Lennart Poettering | |
This replaces this: free(p); p = NULL; by this: p = mfree(p); Change generated using coccinelle. Semantic patch is added to the sources. | |||
2015-09-08 | Merge pull request #1190 from poettering/rework-virt | Daniel Mack | |
basic: rework virtualization detection API | |||
2015-09-08 | sd-login: fix sd_seat_get_active() to return ENODATAsystemd/v226 | David Herrmann | |
This seems to be an oversight from: 707b66c66381c899d7ef640e158ffdd5bcff4deb We have to return ENODATA instead of ENOENT if a requested entry is non-present. Also fix the call-site in udev to check for these errors. | |||
2015-09-08 | build: prepare for v226 | David Herrmann | |
Bump version info and update NEWS for the upcoming release. | |||
2015-09-08 | Merge pull request #1201 from torstehu/fix-typo | David Herrmann | |
treewide: fix typos | |||
2015-09-08 | Merge pull request #1192 from poettering/sd-bus-container | Daniel Mack | |
sd-bus: pass container bus errors up to calling process | |||
2015-09-08 | treewide: fix typos | Torstein Husebø | |
2015-09-08 | Merge pull request #1196 from evverx/systemctl-add-consists-of | Lennart Poettering | |
systemctl: add ConsistsOf as the inverse of PartOf | |||
2015-09-08 | Merge pull request #1198 from martinpitt/master | Lennart Poettering | |
cgroup-util: fix devices controller | |||
2015-09-08 | cgroup-util: fix devices controller | Martin Pitt | |
Commit efdb0237 accidentally changed the name of the "devices" cgroup controller to "device". | |||
2015-09-08 | Merge pull request #1195 from poettering/nspawn-fixes | Daniel Mack | |
Various nspawn fixes | |||
2015-09-08 | systemctl: add ConsistsOf as the inverse of PartOf | Evgeny Vereshchagin | |
2015-09-08 | update TODO | Lennart Poettering | |
2015-09-08 | NEWS: update contributors list | Lennart Poettering | |
2015-09-08 | nspawn: also close uid shift socket in the parent | Lennart Poettering | |
We should really close all parent sides of our child/parent socket pairs. | |||
2015-09-08 | nspawn: short reads do not set errno, hence don't try to print it | Lennart Poettering | |
2015-09-08 | inspawn: switch from SOCK_DGRAM to SOCK_SEQPACKET for internal socketpairs | Lennart Poettering | |
SOCK_DGRAM and SOCK_SEQPACKET have very similar semantics when used with socketpair(). However, SOCK_SEQPACKET has the advantage of knowing a hangup concept, since it is inherently connection-oriented. Since we use socket pairs to communicate between the nspawn main process and the nspawn child process, where the child might die abnormally it's interesting to us to learn about this via hangups if the child side of the pair is closed. Hence, let's switch to SOCK_SEQPACKET for these internal communication sockets. Fixes #956. | |||
2015-09-08 | nspawn: properly propagate errors when we fail to set soemthing up | Lennart Poettering | |
2015-09-07 | Merge pull request #1193 from phomes/typos | Daniel Mack | |
man: typo fixes | |||
2015-09-07 | man: typo fixes | Thomas Hindoe Paaboel Andersen | |
2015-09-07 | machined: improve error message when trying to get a bus in bus-less containers | Lennart Poettering | |
Now that we get useful error messages from sd-bus for container connections, let's make use of this and report better errors back to machined clients. Fixes #685. | |||
2015-09-07 | sd-bus: when connecting to a container AF_UNIX bus, return error | Lennart Poettering | |
When forking of a child process for connecting to a container, pass the preicse connection error to the calling process. We already did this correctly for kdbus busses, let's do so for dbus1 busses, too. | |||
2015-09-07 | Merge pull request #1191 from poettering/nspawn-split | Daniel Mack | |
nspawn: split up nspawn.c into multiple smaller .c files | |||
2015-09-07 | nspawn: sort and clean up included header list | Lennart Poettering | |
Let's remove unnecessary inclusions, and order the list alphabetically as suggested in CODING_STYLE now. | |||
2015-09-07 | nspawn: remove nspawn.h, it's empty now | Lennart Poettering | |
2015-09-07 | nspawn: split out --uid= logic into nspawn-setuid.[ch] | Lennart Poettering | |
2015-09-07 | nspawn: split out machined registration code to nspawn-register.[ch] | Lennart Poettering | |
2015-09-07 | nspawn: split out cgroup related calls into nspawn-cgroup.[ch] | Lennart Poettering | |
2015-09-07 | nspawn: split out network related code to nspawn-network.[ch] | Lennart Poettering | |
2015-09-07 | nspawn: split all port exposure code into nspawn-expose-port.[ch] | Lennart Poettering | |
2015-09-07 | nspawn: split out mount related functions into a new nspawn-mount.c file | Lennart Poettering | |
2015-09-07 | Merge pull request #1189 from poettering/unit-start | Daniel Mack | |
unit: move "not supported" check after condition check in unit_start() | |||
2015-09-07 | unit: move "not supported" check after condition check in unit_start() | Lennart Poettering | |
Make sure we always check conditions before checking whether the unit type is supported in unit_start(), since condition checks are "clean errors", while "not supported" errors are fatal. This cleans up the boot output of systemd in containers, where a lot of NOTSUPP lines were shown befor this fix. This partially reverts 8ff4d2ab0d4758e914aea6d86154d85f2b2c787f which reorder the checks. | |||
2015-09-07 | basic: rework virtualization detection API | Lennart Poettering | |
Introduce a proper enum, and don't pass around string ids anymore. This simplifies things quite a bit, and makes virtualization detection more similar to architecture detection. | |||
2015-09-07 | NEWS: fix typos | Daniel Mack | |
2015-09-07 | update NEWS | Lennart Poettering | |
2015-09-07 | Merge pull request #1178 from poettering/gpt-auto-fixes | Daniel Mack | |
handle LUKS root partitions better in gpt-auto, plus other fixes | |||
2015-09-07 | Merge pull request #1183 from dvdhrm/cpename | Lennart Poettering | |
man: clarify wording of os-release.CPE_NAME | |||
2015-09-07 | Merge pull request #1182 from martinpitt/master | David Herrmann | |
tests: Skip test-cgroup-util test_mask_supported() when not running under systemd | |||
2015-09-07 | man: clarify wording of os-release.CPE_NAME | David Herrmann | |
We expect the CPE_NAME to be formatted in URI binding syntax. Make that clear in the documentation. Furthermore, the CPE-spec has been taken over by NIST, so adjust the links as well. Reported by: Ben Harris <bjh21@cam.ac.uk> | |||
2015-09-07 | tests: Skip test-cgroup-util test_mask_supported() when not running under ↵ | Martin Pitt | |
systemd Commit 5f4c5fef6 introduced this new test case, but this does not work in build chroots where cgroupfs is not mounted. So skip the test if systemd is not running. | |||
2015-09-07 | Merge pull request #1181 from evverx/update-systemd-analyze-completion | Daniel Mack | |
shell-completion: update systemd-analyze bash-completion | |||
2015-09-07 | shell-completion: update systemd-analyze bash-completion | Evgeny Vereshchagin | |
* Change --no-man to --man (see dad29df) * --{from,to}-pattern require arg | |||
2015-09-07 | Merge pull request #1179 from poettering/sd-event-sigchld-fix | Tom Gundersen | |
sd-event: make sure to create a signal queue for the right signal | |||
2015-09-07 | Merge pull request #1165 from poettering/nspawn-files | Tom Gundersen | |
various fixes to the core, logind, machined, nspawn |