Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-11-07 | socket-proxy: actually properly keep track of connections | Lennart Poettering | |
2013-11-07 | activate: print a nice message if no fd to listen on was specified | Lennart Poettering | |
2013-11-07 | shutdown: as sd-shutdown.h is a drop-in header it should not include any ↵ | Lennart Poettering | |
other headers of ours | |||
2013-11-07 | api: replace manual C++ guards by macros | Lennart Poettering | |
2013-11-07 | socket-proxyd: no need to redefine sockaddr union | Lennart Poettering | |
2013-11-07 | util: add circle to special chars we can draw | Lennart Poettering | |
2013-11-07 | pam: the DECIMAL_STR_MAX macro is awesome, let's use it | Lennart Poettering | |
2013-11-07 | machine: add missing header include | Kay Sievers | |
2013-11-07 | machine: move symbols referenced by shared code from main to shared file | Kay Sievers | |
With --enable-address-sanitizer we get: machined-dbus.c:228: undefined reference to 'manager_add_machine' | |||
2013-11-07 | bus: make bus_print_all_properties work for non machinectl cases | Simon Peeters | |
add a destination parameter and skip properties we can't read | |||
2013-11-07 | core: fix require $XDG_RUNTIME_DIR | Kay Sievers | |
$ sudo dracut -f Trying to run as user instance, but $XDG_RUNTIME_DIR is not set. /usr/lib/dracut/modules.d/98systemd/module-setup.sh: line 10: ((: >= 198 : syntax error: operand expected (error token is ">= 198 ") | |||
2013-11-07 | udevadm-settle: add missing brace | Zbigniew Jędrzejewski-Szmek | |
2013-11-07 | core: require $XDG_RUNTIME_DIR to be set for user instances | Mantas Mikulėnas | |
It seems that some places use /run otherwise, which isn't going to work. | |||
2013-11-07 | test-strv: add strv_split, strv_split_newline, strv_remove_prefix | Daniel Buch | |
2013-11-07 | Make hibernation test work for swap files | Jan Janssen | |
Suspend to disk works for swap files too (even if it is located on an ecrypted file system): https://www.kernel.org/doc/Documentation/power/swsusp-and-swap-files.txt | |||
2013-11-07 | udevadm-trigger: add parameters checking | Yang Zhiyong | |
2013-11-07 | udevadm-settle: add parameters checking | Yang Zhiyong | |
2013-11-07 | systemctl: make LOAD column width dynamic | Mantas Mikulėnas | |
Otherwise 'not-found' overflows into the ACTIVE column. | |||
2013-11-07 | systemd-python: convert keyword value to string | Richard Marko | |
Allows using journal.send('msg', PRIORITY=journal.LOG_CRIT) Before this commit this results in TypeError: cannot concatenate 'str' and 'int' objects and requires passing PRIORITY value as string to work. | |||
2013-11-07 | Support additional argument in reboot | WaLyong Cho | |
reboot syscall can be performed with an additional argument. In some systems this functionality can be useful to modify the mode of the next boot performed by the bootloader. | |||
2013-11-07 | acpi-fpdt: break on zero or negative length read | Pavel Holica | |
https://bugzilla.redhat.com/show_bug.cgi?id=1027478 | |||
2013-11-07 | bus: indicate in .pc file that we need libsystemd-id128 definitions | Lennart Poettering | |
2013-11-07 | api: add C++ guards | Lennart Poettering | |
2013-11-07 | rtnl: headers in src/systemd/ may not use #pragma once | Lennart Poettering | |
2013-11-07 | rtnl: headers in src/systemd/ may not include internal headers | Lennart Poettering | |
Hence including "util.h" from sd-rtnl.h is not OK. Let's minimize our headers we pull in a bit. | |||
2013-11-07 | rtnl: internal headers must include pragma once protection | Lennart Poettering | |
2013-11-07 | build-sys: add .pc file for libsystemd-bus | Lennart Poettering | |
2013-11-07 | build-sys: merge sd-event into sd-bus | Lennart Poettering | |
The sd-event APIs should be available only as part of libsystemd-bus so that the utility calls are not linked into each independently and we can minimize the number of libraries we have. | |||
2013-11-07 | build-sys: add Makefile symlink for src/activate/ | Lennart Poettering | |
2013-11-07 | utf8: export utf8 validation functions as part of sd-bus | Lennart Poettering | |
To write useful bus code clients need to validate utf8 frequently since the bus reacts allergic to it. Since glibc does not provide any calls for this, let's provide it as part of libsystemd-bus. | |||
2013-11-07 | utf8: ascii_filter() is unused, let's remove it | Lennart Poettering | |
2013-11-07 | consistently use "int" when retrieving "bool" from bus messages | Kay Sievers | |
2013-11-06 | bus: add forgotten _public_ | Zbigniew Jędrzejewski-Szmek | |
2013-11-06 | pam_systemd: dup the fd received from logind | Zbigniew Jędrzejewski-Szmek | |
Otherwise sd_bus_message cleanup would close it. | |||
2013-11-07 | machinectl: we need glibc's socket.h, not our own | Lennart Poettering | |
2013-11-07 | pam: externally our booleans are ints, not unsigneds | Lennart Poettering | |
2013-11-07 | activate: port to use new getpeername_pretty()/getsockname_pretty() calls | Lennart Poettering | |
2013-11-07 | socket: rework things to have only one sockaddr formatter | Lennart Poettering | |
2013-11-07 | event: make sure we keep a reference to all events we dispatch while we do so. | Lennart Poettering | |
2013-11-07 | activate: fix uninitialized memory | Lennart Poettering | |
2013-11-07 | pam_systemd: pass 'unsigned' instead of 'bool' to sd_bus_message_read() | Kay Sievers | |
2013-11-06 | mkdir: modernize header ifdefs | Lennart Poettering | |
2013-11-06 | socket-proxyd: rework to support multiple sockets and splice()-based ↵ | Lennart Poettering | |
zero-copy network IO This also drops --ignore-env, which can't really work anymore if we allow multiple fds. Also adds support for pretty printing of peer identities for debug purposes, and abstract namespace UNIX sockets. Also ensures that we never take more connections than a certain limit. | |||
2013-11-06 | active: rework make_socket_fd() to be based on socket_address_listen() | Lennart Poettering | |
Among other things this makes sure we set SO_REUSEADDR which is immensely useful. | |||
2013-11-06 | activate: reduce log settings to normal | Lennart Poettering | |
2013-11-06 | activate: get rid of redundant definiton of fd_cloexec() | Lennart Poettering | |
2013-11-06 | pam_systemd: port to libsystemd-bus | Zbigniew Jędrzejewski-Szmek | |
2013-11-06 | systemd_pam: treat debug as debug=1 and parse all params | Zbigniew Jędrzejewski-Szmek | |
systemd_pam would ignore all params after the first invalid one. Instead ignore just this one, and parse the rest. There's just one now, but as a matter of principle ;) Also, allow debug as an alias for debug=1, and don't treat invalid debug= options as fatal. | |||
2013-11-06 | bus: add public libsystemd-event | Zbigniew Jędrzejewski-Szmek | |
2013-11-06 | bus: export libsystemd-bus as a public library | Zbigniew Jędrzejewski-Szmek | |
Old static libsystemd-bus.la becomes libsystemd-bus-internal.la. memfd functions are also exported in the same library. (Best viewed with --color-words -U0). |