summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* networkd: dhcp - by default ignore the MTUTom Gundersen2014-01-18
|
* sd-dhcp-client: refactor client_{free,new}Tom Gundersen2014-01-18
| | | | | | Make them more simiar to sd_bus and friends. Also factor out the event attachment. In the future, we will likely want to support external main-loops, so this is a first step. For the time being, we are still requiring an sd_event to be attached though.
* sd-resolv: declare functions from .h publicDaniel Buch2014-01-18
|
* sd-resolve: rename get_next() and get_n_queries() + cleanupDaniel Buch2014-01-18
|
* sd-resolve: Allocate objects with new()Daniel Buch2014-01-18
|
* sd-resolve: get rid of sd_resolve_freeanswer()Daniel Buch2014-01-18
|
* sd-dhcp-client/networkd: add domainname supportTom Gundersen2014-01-18
|
* networkd: don't hard depend on system busTom Gundersen2014-01-18
| | | | | | | | | We may not have a dbus daemon in the initrd (until we can rely on kdbus). In this case, simply ignore any attempts at using the bus. There is only one user for now, but surely more to come. In order to work reliably in the real root without kdbus, but at the same time don't delay boot when kdbus is in use, order ourselves after dbus.service.
* networkd: resolv.conf - reword commentTom Gundersen2014-01-18
| | | | | Take into account that users may want to use resolvconf(8), or similar. Also, avoid repeated calls to fputs().
* libsystemd: sync kdbus.hDaniel Mack2014-01-18
|
* units: drop [Install] section from multi-user.target and graphical.targetLennart Poettering2014-01-17
| | | | | | | | They were supposed to make it easy to make the default.target a symlink to these targets, but this was never advertised and we have a better command for this now in "systemctl set-default". Since the install section makes the output of "systemctl list-unit-files" confusing (since it makes the units appear as "disabled"), let's drop the sections.
* Update TODOLennart Poettering2014-01-17
|
* sd-resolve: rename structs to fit coding-style e.g 'struct MixedCase'Daniel Buch2014-01-17
| | | | | | | | lets get this right once, and if not for all, atleast for now :) So comments and input about nameing is very welcome. Cheers
* sd-resolve: get rid of _t post-fixes for sd_ objectsDaniel Buch2014-01-17
| | | | We dont want _t prefixes, right?
* build: Skip .busname generator when kdbus is offUmut Tezduyar Lindskog2014-01-17
|
* bus: Fix read_word_le() functionLukasz Skalski2014-01-17
|
* update TODOLennart Poettering2014-01-17
|
* libsystemd: rename LIBSYSTEMD_BUS to LIBSYSTEMDTom Gundersen2014-01-17
|
* bus: update kdbus.h (ABI break)Kay Sievers2014-01-17
|
* networkd: resolv.conf - extend the comment a bitTom Gundersen2014-01-16
|
* sd-dhcp-client: minor style fixesTom Gundersen2014-01-16
| | | | Also introduce a cleanup macro for DHCPLease
* sd-dhcp-client: refactor DNS supportTom Gundersen2014-01-16
| | | | Rather than keeping an array of pointers to addresses, just keep an array of addresses.
* sd-dhcp-client/networkd: add transient hostname supportTom Gundersen2014-01-16
|
* networkd: dhcp - only set the MTU option onceTom Gundersen2014-01-16
| | | | Only set MTU request when creating the dhcp client, not every time it is restarted.
* networkd: link - only save original MTU when necessaryTom Gundersen2014-01-16
|
* networkd: improve loggingTom Gundersen2014-01-16
|
* bus: fix issue with reference countingZbigniew Jędrzejewski-Szmek2014-01-16
| | | | b7fc42e03 introduced a regression.
* build-sys: increase valgrind stack limit so all tests pass againZbigniew Jędrzejewski-Szmek2014-01-16
|
* bus: break reference cycle between bus and messagesZbigniew Jędrzejewski-Szmek2014-01-16
| | | | | Previously (6ee4f99 bus: break reference cycle between bus and messages) I committed the test code, but not the actual fix :)
* build-sys: fix --enable-dbusChengwei Yang2014-01-16
| | | | | The incorrect shell code of AS_IF always get false value, so it always build without dbus though build with "--enable-dbus" explicitely.
* sd-dhcp-client/networkd: add interface MTU supportTom Gundersen2014-01-16
|
* sd-rtnl: only alter link flags when reqeusted toTom Gundersen2014-01-16
|
* sd-dhcp-client: fix memory corruptionTom Gundersen2014-01-16
|
* event: extend priority raneg to 64bitLennart Poettering2014-01-15
| | | | | | | The kdbus prioq logic will use 64bit prios too, so let's keep this similar in style. Using 64bit here has the advantage, that pointers and pretty much anything else can be mapped naturally to priorities if so desired.
* systemctl: introduce new "import-environment" commandLennart Poettering2014-01-15
| | | | | This may be used in graphical session start-up scripts to upload environment variables such as $DISPLAY into the systemd manager easily.
* logind: get rid of X11 display socket symlinkLennart Poettering2014-01-15
| | | | | | | | X11 never made use of it anyway and it's probably better to just push $DISPLAY into the systemd daemon from gnome-session (or equivalent program) than to change libX11 to look for this socket. In particular since we won't need this for Wayland anyway and we shouldn't add infrastructure for stuff that's on its way out anyway.
* shell-completion: remove load from systemctlLukas Nykryn2014-01-15
|
* Revert "Revert "coredumpctl: in case of error free pattern after print""Lukas Nykryn2014-01-15
| | | | | | | | In the case of the error set_consume will free the pointer 'pattern' which is later used in log_error. Either we should stop priniting that or use simple set_put and free pattern manually. This reverts commit ece6b8fd5bbc1fee16f652e680e3033f2f3efc4a.
* sd-resolv: rename to sd-resolveTom Gundersen2014-01-14
| | | | | Lennart pointed out that we were misspelling 'resolve'. Let's not repeat the mistakes of 'umount' and 'resolv.conf'.
* README: list CONFIG_FHANDLE in main sectionKay Sievers2014-01-14
|
* readme: CONFIG_FHANDLE is a requirementUmut Tezduyar Lindskog2014-01-14
|
* Revert "coredumpctl: in case of error free pattern after print"Zbigniew Jędrzejewski-Szmek2014-01-14
| | | | | | This reverts commit cf50a55277ee432e1217ad894afcbd9a664ff96c. set_consume frees on error.
* coredumpctl: in case of error free pattern after printLukas Nykryn2014-01-14
|
* sd-resolv: remove left-over commentTom Gundersen2014-01-14
| | | | We are anyway breaking the API by renaming everything, so that is not a concern.
* sd-resolv: require SOCK_CLOEXECTom Gundersen2014-01-14
|
* sd-resolv: rename old asyncns variablesDaniel Buch2014-01-14
|
* sd_resolv: Rename structs- and function names to sd_resolvDaniel Buch2014-01-14
|
* bus: update kdbus.h (ABI break)Kay Sievers2014-01-14
|
* bus: update kdbus.h (ABI break)Kay Sievers2014-01-14
|
* networkd: DHCPv4 - allow opting out of using DNS serversTom Gundersen2014-01-13
| | | | Setting UseDNS=no will ignore any received DNS servers.