Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-12-12 | networkctl: remove unused variable | Thomas Hindoe Paaboel Andersen | |
2014-12-12 | wrap a few *_FOREACH macros in curly braces | Thomas Hindoe Paaboel Andersen | |
cppcheck would give up with "syntax error" without them. This led to reports of syntax errors in unrelated locations and potentially hid other errors | |||
2014-12-12 | update TODO | Lennart Poettering | |
2014-12-12 | core: retry unmounting until we are done, in case of stacked mounts | Lennart Poettering | |
2014-12-12 | networkctl: also draw a nice unicode cirlce when "networkctl status" is run ↵ | Lennart Poettering | |
without parameters | |||
2014-12-12 | networkctl: show interface names next to IP addresses if we dump adresses ↵ | Lennart Poettering | |
from all interfaces | |||
2014-12-12 | networkctl: also show gateway address when "networkctl status" without ↵ | Lennart Poettering | |
further arguments is passed | |||
2014-12-12 | networkctl: show MAC address OUI vendor next to MAC addresses | Lennart Poettering | |
2014-12-12 | test-cap-list: always check libcap comes to the same names as we do, for the ↵ | Lennart Poettering | |
names it knows | |||
2014-12-12 | cap-list: return lower-case capability names, similar to libcap's ↵ | Lennart Poettering | |
cap_to_name(), for compat reasons | |||
2014-12-12 | update TODO | Lennart Poettering | |
2014-12-12 | man: fedora 21 has been release, suggest 21 as fedora version in example yum ↵ | Lennart Poettering | |
command line | |||
2014-12-12 | nspawn: when booting in ephemeral mode, append random token to machine name | Lennart Poettering | |
Also, when booting up an ephemeral container of / use the system hostname as default machine name. This way specifiyng -M is unnecessary when booting up an ephemeral container, while allowing any number of ephemeral containers to run from the same tree. | |||
2014-12-12 | nspawn: allow spawning ephemeral nspawn containers based on the root file ↵ | Lennart Poettering | |
system of the OS This works now: # systemd-nspawn -xb -D / -M foobar Which boots up an ephemeral container, based on the host's root file system. Or in other words: you can now run the very same host OS you booted your system with also in a container, on top of it, without having it interfere. Great for testing whether the init system you are hacking on still boots without reboot the system! | |||
2014-12-12 | nspawn: don't link journals in ephemeral mode | Lennart Poettering | |
2014-12-12 | nspawn: properly unset arg_link_journal_try, when --link-journal= is specified | Lennart Poettering | |
2014-12-12 | copy: use btrfs reflinking only whe we know we copy full files | Lennart Poettering | |
2014-12-12 | bus: send attach flags on BUS_MAKE | David Herrmann | |
Make sure to set send-attach-flags on BUS_MAKE. These control which information is revealed about the bus-owner. | |||
2014-12-12 | bus: fix assert() on HELLO error-path | David Herrmann | |
Make sure we don't call into any bus_kernel_*() functions before b->is_kernel is set to true. Hard-code the CMD_FREE just like the other helpers do. | |||
2014-12-12 | nspawn: beef up nspawn with some btrfs magic | Lennart Poettering | |
This adds --template= to duplicate an OS tree as btrfs snpashot and run it This also adds --ephemeral or -x to create a snapshot of an OS tree and boot that, removing it after exit. | |||
2014-12-12 | copy: teach copy_bytes() btrfs reflink magic | Lennart Poettering | |
2014-12-12 | gpt-auto-generator: make use of new btrfs-util.h APIs | Lennart Poettering | |
2014-12-12 | shared: add new btrfs-util.[ch] helpers for doing common btrfs operation | Lennart Poettering | |
2014-12-12 | shared: missing.h should include btrfs.h, before redefining some of its ↵ | Lennart Poettering | |
definitions | |||
2014-12-12 | util: minor simplification for loop_write() and loop_read() | Lennart Poettering | |
2014-12-12 | nspawn: properly validate machine names | Lennart Poettering | |
2014-12-12 | seccomp-util.h: make sure seccomp-util.h can be included alone | Lennart Poettering | |
2014-12-12 | path-util: no need to check whether p is absolute twice | Lennart Poettering | |
2014-12-12 | udev-builtin-btrfs: properly initialize ioctl struct to zeroes | Lennart Poettering | |
2014-12-12 | util: document why we have alloca_align() | Lennart Poettering | |
2014-12-12 | util: when using basename() for creating temporary files, verify the ↵ | Lennart Poettering | |
resulting name is actually valid Also, rename filename_is_safe() to filename_is_valid(), since it actually does a full validation for what the kernel will accept as file name, it's not just a heuristic. | |||
2014-12-12 | journal: fix dangling 'else' ambiguity | David Herrmann | |
Rework the sd-journal iterators to avoid dangling 'else' ambiguity. For a detailed explanation, see: commit bff686e2a981ccd0888cdf1981977d24320f1770 Author: David Herrmann <dh.herrmann@gmail.com> Date: Fri Dec 12 09:43:54 2014 +0100 hwdb: fix dangling 'else' ambuguity | |||
2014-12-12 | hwdb: fix dangling 'else' ambuguity | David Herrmann | |
Imagine the following use of hwdb: if (condition_A) SD_HWDB_FOREACH_PROPERTY(hwdb, modalias, key, value) operation_A(key, value); else log_error("..."); This should work just fine, but but definitely does not what you would expect. Due to how SD_HWDB_FOREACH_PROPERTY is defined, the dangling 'else' is linked to the hidden 'if' statement in the macro instead of the outer 'if (condition_A)'. This is unexpected and really annoying to debug. Fix this by never leaving un-finished if-statements in SD_HWDB_FOREACH_PROPERTY(). We simply inverse the if() statement and explicitly add an 'else'-branch. This way, the statement is closed and all ambuguities are resolved. | |||
2014-12-12 | hwdb: FOREACH_HWDB_PROPERTY -> SD_HWDB_FOREACH_PROPERTY | David Herrmann | |
Lets not pollute the global namespace. Prefix all our exported names and macros with SD_HWDB_*. | |||
2014-12-11 | hwdb: Update database of Bluetooth company identifiers | Marcel Holtmann | |
2014-12-11 | use correct format types | Thomas Hindoe Paaboel Andersen | |
2014-12-11 | test-condition: add more test cases | Ronny Chevalier | |
2014-12-11 | test-strv: add test for strv_equal | Ronny Chevalier | |
2014-12-11 | test-execute: add tests for UMask directive | Ronny Chevalier | |
2014-12-11 | test-unit-name: add tests for %f | Ronny Chevalier | |
2014-12-11 | bus: sync with kdbus.git | David Herrmann | |
Changes: * bloom parameters are returned in an offset via HELLO * FREE now takes items just like any other ioctl | |||
2014-12-11 | tree-wide: use our memset() macros instead of memset() itself | Lennart Poettering | |
2014-12-11 | treewide: correct spacing near eol in code comments | Torstein Husebø | |
2014-12-11 | core: correct spacing near eol in code comments | Torstein Husebø | |
2014-12-11 | shared: correct spacing near eol in code comments | Torstein Husebø | |
2014-12-11 | journald: correct spacing near eol code comments | Torstein Husebø | |
2014-12-11 | sd-bus: correct spacing near eol in code comments | Torstein Husebø | |
2014-12-11 | networkd/resolved: correct spacing near eol in code comments | Torstein Husebø | |
2014-12-11 | build-sys: fix user unit m4 logic | Lennart Poettering | |
2014-12-11 | update TODO | Lennart Poettering | |