Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-12-28 | libsystemd: Fix minor typo in comment | Sylvain Plantefève | |
2014-12-28 | machined: don't look for images on each property get, but cache the image ↵ | Lennart Poettering | |
object inbetween | |||
2014-12-28 | update TODO | Lennart Poettering | |
2014-12-28 | util: treat -1 as special size in format_bytes() | Lennart Poettering | |
2014-12-28 | machined: add support for reporting image size via btrfs quota | Lennart Poettering | |
2014-12-28 | tmpfiles.d: upgrade a couple of directories we create at boot to subvolumes | Lennart Poettering | |
In particular we upgrade /var/lib/container, /var/tmp and /tmp to subvolumes. | |||
2014-12-28 | tmpfiles: add new line type 'v' for creating btrfs subvolumes | Lennart Poettering | |
2014-12-28 | machinectl/machined: implement "rename", "clone", "read-only" verbs for ↵ | Lennart Poettering | |
machine images | |||
2014-12-28 | machined: add "machinectl remove" for removing images | Lennart Poettering | |
2014-12-28 | nspawn: use the same image discovery logic in nspawn as in machined | Lennart Poettering | |
2014-12-28 | machined: Move image discovery logic into src/shared, so that we can make ↵ | Lennart Poettering | |
use of it from nspawn | |||
2014-12-27 | Fix check_loopback() | Stéphane Graber | |
Add missing htonl() so that check_loopback() actually tests for 127.0.0.1 instead of 1.0.0.127 on little-endian machines. | |||
2014-12-26 | loginctl: reindent --help text | Lennart Poettering | |
2014-12-26 | loginctl: add more --help sections | Lennart Poettering | |
2014-12-26 | machinectl: add status commands | Lennart Poettering | |
2014-12-26 | machined: fix search patch magic for '.host' image | Lennart Poettering | |
2014-12-26 | machined: make image read-only check indepenednt on own privs | Lennart Poettering | |
2014-12-26 | machinectl: mark read-only images when listing in red | Lennart Poettering | |
2014-12-26 | update TODO | Lennart Poettering | |
2014-12-26 | import: make image root directory configurable, instead of hardcoding ↵ | Lennart Poettering | |
/var/lib/container | |||
2014-12-26 | machined: when discovering images, implicitly add ".host" as pseudo image ↵ | Lennart Poettering | |
referring to the host's own directory tree | |||
2014-12-26 | machined: fix image search path iteration | Lennart Poettering | |
2014-12-26 | machined: let's also check machine directories in /usr and /usr/local | Lennart Poettering | |
2014-12-26 | import: properly remove pre-existing images if --force is used | Lennart Poettering | |
2014-12-26 | import: beef up gpt importer to optionally make writable copy of read-only ↵ | Lennart Poettering | |
vendor image | |||
2014-12-26 | import: minor improvements to dkr importer | Lennart Poettering | |
2014-12-26 | util: always override crtime xattr | Lennart Poettering | |
2014-12-26 | machinectl: left-align times | Lennart Poettering | |
2014-12-26 | copy: try top copy atime/time/xattrs when copying files | Lennart Poettering | |
2014-12-26 | test: improve btrfs test case | Lennart Poettering | |
2014-12-26 | machined: be more thorough when checking whether an image is writable or not | Lennart Poettering | |
2014-12-26 | journald: always allocate space for object fields | Zbigniew Jędrzejewski-Szmek | |
If OBJECT_PID= came as the last field, we would not reallocate the iovec to bigger size, and fail the assertion later on in dispatch_message_real(). | |||
2014-12-26 | journald: fix off by one in native transport | Zbigniew Jędrzejewski-Szmek | |
https://bugzilla.redhat.com/show_bug.cgi?id=1177184 | |||
2014-12-26 | hwdb: mouse - add Razer Abyssus | Tom Gundersen | |
2014-12-26 | man: mark hwdb related man pages as conditional | Michael Biebl | |
Follow-up fix for commit fe659612e40e6a0cf91a73b10aa45eea958b747e. | |||
2014-12-25 | man: typo in sd_watchdog_enabled notes | Manuel Mendez | |
https://bugs.freedesktop.org/show_bug.cgi?id=87642 | |||
2014-12-25 | test: wait for cloned thread to exit | Filipe Brandenburger | |
In test_raw_clone, make sure the cloned thread calls _exit() and in the parent thread call waitpid(..., __WCLONE) to wait for the child thread to terminate, otherwise there is a race condition where the child thread will log to the console after the test process has already exited and the assertion from the child thread might not be enforced. The absence of this patch might also create problems for other tests that would be added after this one, since potentially both parent and child would run those tests as the child would continue running. Tested by confirming that the logs from the child are printed before the test terminates and that a false assertion in the child aborts the test with a core dump. [zj: also add check for the return value.] | |||
2014-12-25 | test: only use assert_se in test_raw_clone | Filipe Brandenburger | |
The asserts used in the tests should never be allowed to be optimized away. | |||
2014-12-25 | configure.ac: keep posix compat for string tests | Dave Reisner | |
'==' and '=' are equivalent in /bin/bash, but POSIX compliant shells do not understand '==.' | |||
2014-12-25 | man: add a note why %U,%h,%s are mostly useless | Zbigniew Jędrzejewski-Szmek | |
The reasons were already given in the description of %U, but the are easy to overlook, and it's better to be explicit to avoid confusion. | |||
2014-12-25 | run: uninitialized variable | Zbigniew Jędrzejewski-Szmek | |
2014-12-25 | ata_id: remove temp variable to kill warning | Zbigniew Jędrzejewski-Szmek | |
src/udev/ata_id/ata_id.c:503:24: warning: assignment from incompatible pointer type identify_words = &identify.wyde; ^ | |||
2014-12-25 | ata_id: modernize | Zbigniew Jędrzejewski-Szmek | |
2014-12-25 | pam_systemd: remove spurious include of <sys/capability.h> | Filipe Brandenburger | |
It does not use any functions or constants from libcap directly. Tested that "pam_systemd.la" builds cleanly and works after this change. | |||
2014-12-25 | timedated: remove spurious include of <sys/capability.h> | Filipe Brandenburger | |
It does not use any functions from libcap directly. The CAP_SYS_TIME constant in use by this file comes from <linux/capability.h> imported through "missing.h". Tested that "systemd-timedated" builds cleanly and works after this change. | |||
2014-12-25 | localed: remove spurious include of <sys/capability.h> | Filipe Brandenburger | |
It does not use any functions from libcap directly. The CAP_SYS_ADMIN constant in use by this file comes from <linux/capability.h> imported through "missing.h". Tested that "systemd-localed" builds cleanly and works after this change. | |||
2014-12-25 | bus: remove spurious include of <sys/capability.h> | Filipe Brandenburger | |
They do not use any functions from libcap directly. The CAP_SYS_ADMIN constant in use by bus-objects.c comes from <linux/capability.h> imported through "missing.h". The "missing.h" header is imported through "util.h" which gets imported in "bus-util.h". Tested that everything builds cleanly after this change. | |||
2014-12-25 | machined: remove spurious include of <sys/capability.h> | Filipe Brandenburger | |
They do not use any functions from libcap directly. The CAP_KILL constant in use by these files comes from <linux/capability.h> imported through "missing.h". Tested that "systemd-machined" builds cleanly and works after this change. | |||
2014-12-25 | hostnamed: remove spurious include of <sys/capability.h> | Filipe Brandenburger | |
It does not use any functions from libcap directly. The CAP_SYS_ADMIN constant in use by this file comes from <linux/capability.h> imported through "missing.h". Tested that "systemd-hostnamed" builds cleanly and works after this change. | |||
2014-12-25 | tmpfiles: remove spurious include of <sys/capability.h> | Filipe Brandenburger | |
It does not use any functions from libcap directly. The CAP_MKNOD constant in use by this file comes from <linux/capability.h> imported through "missing.h". Tested that "systemd-tmpfiles" builds cleanly and works after this change. |