Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-10-19 | tree-wide: add more void casts for various syscall invocations | Lennart Poettering | |
2015-10-19 | core: fix type of NetClass dbus property | Lennart Poettering | |
it's exposed as uint32_t and it is internally an uint32_t, hence no need to treat it as an unsigned. | |||
2015-10-19 | Merge pull request #1614 from alkino/master | Lennart Poettering | |
Hook more properties for transient units | |||
2015-10-19 | Hook more properties for transient units | Nicolas Cornu | |
systemd-run can now launch units with EnvironmentFile set. | |||
2015-10-19 | tree-wide: remove unused functions | Thomas Hindoe Paaboel Andersen | |
2015-10-19 | Merge pull request #1598 from evverx/run-oomscoreadjust | Lennart Poettering | |
systemd-run can launch units with OOMScoreAdjust | |||
2015-10-18 | Merge pull request #1595 from poettering/proxy-fixes | David Herrmann | |
bus proxy fixes, and more | |||
2015-10-17 | run: can launch units with OOMScoreAdjust | Evgeny Vereshchagin | |
2015-10-17 | util: add func for checking OOMScoreAdjust | Evgeny Vereshchagin | |
2015-10-17 | unit: allocate bus name match string on the stack | Lennart Poettering | |
Let's use strjoina() rather than strjoin() for construct dbus match strings. Also, while we are at it, fix parameter ordering, so that our functions always put the object first, like it is customary for OO-like programming. | |||
2015-10-17 | sd-bus: fix error handling of pthread API calls | Lennart Poettering | |
pthread APIs (unlike the rest of libc) return their errors as positive error codes directly from the functions, rather than using errno. Let's make sure we always handle things that way. | |||
2015-10-17 | bus-proxy: don't close local bus fds twice | Lennart Poettering | |
Clear up how we pass fd owner ship to proxy and bus objects. Document that ownership is passed of the fds in question even in case of failing constructors, and that callers should forget about fds pass into the proxy object. The alternative would be to duplicate the fds, but given that fds are a relatively scarce and heavy resource let's better avoid that. Fixes #1591. | |||
2015-10-16 | Merge pull request #1582 from evverx/dump-runtime-dir-mode | Ronny Chevalier | |
core: dump RuntimeDirectories and RuntimeDirectoryMode too | |||
2015-10-16 | core: dump RuntimeDirectories and RuntimeDirectoryMode too | Evgeny Vereshchagin | |
2015-10-15 | sd-netlink: refcount multicast groups | Tom Gundersen | |
Track the number of matches installed for a given multicast group, and leave the group once no matches depend on it. In order to handle passed-in sockets that are already members of multicast groups we initialize the refcount based on the membership once we take over the socket. This way we will leave the socket in the state we found it once we finish with it. On kernels that do not fully support reading out the multicast group membership we fall back to never leaving any groups (as before). | |||
2015-10-15 | btrfs: always remove the per-subvol qgroup when removing a subvol | Lennart Poettering | |
btrfs doesn't do that automatically, hence let's do that explicitly each time. | |||
2015-10-15 | Merge pull request #1575 from evverx/expose-manager-timerslacknsec | Lennart Poettering | |
core: expose manager's TimerSlackNSec as propery on dbus | |||
2015-10-15 | core: expose manager's TimerSlackNSec as propery on dbus | Evgeny Vereshchagin | |
2015-10-15 | Merge pull request #1527 from keszybz/lz4 | Lennart Poettering | |
Using lz4 frame api for coredump files | |||
2015-10-15 | Merge pull request #1569 from mustrumr/date-parse-additions | Lennart Poettering | |
Date parse additions | |||
2015-10-15 | run: can launch units with TimerSlackNSec | Evgeny Vereshchagin | |
2015-10-14 | compress: return errors without logging, do not fake errno | Zbigniew Jędrzejewski-Szmek | |
Logging for compression and decompression is assymetrical on purpose: if compiled without some type of compression, those compression code paths should never be invoked. OTOH, it is possible to encounter unsupported format on decompression, so leave those log_debug statements in, to make it easier to diagnose stuff. | |||
2015-10-15 | test: add calendarspec UTC tests | Hristo Venev | |
2015-10-15 | basic: calendarspec UTC support | Hristo Venev | |
Just add " UTC" to the end of the event expression. Works for the special expressions. | |||
2015-10-15 | test: parse_timestamp UTC and fractional seconds tests | Hristo Venev | |
2015-10-15 | basic: parse_timestamp UTC and fractional seconds support | Hristo Venev | |
2015-10-15 | basic: add mktime_or_timegm and localtime_or_gmtime_r | Hristo Venev | |
to time-util.h. They take an extra argument `bool utc`. | |||
2015-10-14 | login: suspend - be a bit more explicit when logging | Tom Gundersen | |
When the Suspend method is called, the only log message we write (unless debugging is enabled) is "Operation finished.". This is not very helpful when trying to figure out what is going on, so add what operation we are talking about to the message: "Operation 'sleep' finished.". Hat tip to Daniel Aleksandersen for pointing this out. | |||
2015-10-14 | Merge pull request #1528 from evverx/systemd-run-syslog-pri-fac | Lennart Poettering | |
systemd-run can launch units with SyslogLevel and SyslogFacility | |||
2015-10-14 | core: execute: validate syslog level and facility | Evgeny Vereshchagin | |
2015-10-14 | util: add functions for validating syslog level and facility | Evgeny Vereshchagin | |
2015-10-14 | systemd-run: can launch units with SyslogFacility | Evgeny Vereshchagin | |
2015-10-14 | systemd-run: can launch units with SyslogLevel | Evgeny Vereshchagin | |
2015-10-14 | tty-ask-password-agent: don't warn if we cannot disable wall messages on the ↵ | Lennart Poettering | |
calling tty For example, due to perm issues. THis simply downgrades the message about it, since this is purely cosmetical anyway. Fixes #1543. | |||
2015-10-14 | core: log if the service to activate vanished before we activate it | Lennart Poettering | |
Normally this shouldn't happen unless the daemon is reloaded. A similar check is already in place in socket.c for the socket activation case. This hopefully makes #1526 non-fatal, though it will not fix this, and there's something else to fix. | |||
2015-10-14 | compress: fix mmap error handling | Zbigniew Jędrzejewski-Szmek | |
2015-10-14 | Merge pull request #1530 from teg/network-fixes-2 | Lennart Poettering | |
networkd/libsystemd-network: collection of trivial patches v2 | |||
2015-10-14 | Merge pull request #1529 from evverx/dbus-props-syslog-fac-pri | Lennart Poettering | |
core: expose `SyslogFacility` and `SyslogLevel` as properties on dbus | |||
2015-10-14 | core: expose SyslogLevel and SyslogFacility as properties on dbus | Evgeny Vereshchagin | |
2015-10-14 | Merge pull request #1560 from evverx/fix-default-chopping | Lennart Poettering | |
bus-util: change `Default`-chopping to `Limit`-searching | |||
2015-10-14 | Merge pull request #1558 from martinpitt/master | Lennart Poettering | |
Fix keymap aliases and add support for Lenovo Thinkpad Yoga S1 | |||
2015-10-14 | keymap: Drop keyboard-keys-to-name.h | Martin Pitt | |
We don't use that anywhere any more. With the introduction of alias names it also is not a proper mapping any more as several keys (e. g. KEY_COFFEE and KEY_SCREENLOCK) have the same numerical mapping. | |||
2015-10-13 | manager: remove unused function | Thomas Hindoe Paaboel Andersen | |
2015-10-13 | bus-util: change `Default`-chopping to `Limit`-searching | Evgeny Vereshchagin | |
See https://github.com/systemd/systemd/pull/1534#commitcomment-13744013 Actually, thinking about this, maybe it would be nicer to actually look for "Limit" in the string rather than chopping off a "Default".... Sounds more generic... | |||
2015-10-13 | Merge pull request #1548 from evverx/journalctl-catalog-ops-fixes | Lennart Poettering | |
Fix journalctl --dump-catalog, journalctl --list-catalog | |||
2015-10-13 | Merge pull request #1534 from evverx/expose-rlimits-on-dbus | Lennart Poettering | |
Expose `DefaultLimit*` as properties on dbus | |||
2015-10-13 | Merge pull request #1542 from keszybz/journal-audit-optional | Lennart Poettering | |
Make journald audit socket maskable | |||
2015-10-13 | Merge pull request #1544 from keszybz/man-IPv6AcceptRouterAdvertisements | Daniel Mack | |
man: describe IPv6AcceptRouterAdvertisements= better | |||
2015-10-13 | journalctl: introduce short options for --since and --until | Jan Synacek | |
Fixes #1514. | |||
2015-10-13 | journalctl: enable args for --dump-catalog and --list-catalog | Evgeny Vereshchagin | |
`journalctl --dump-catalog ID1 ID2 ...` works fine. |