summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2016-06-02Merge branch 'lukeshu/postmove' into lukeshu/masterLuke Shumaker
2016-06-02./move.shLuke Shumaker
2016-06-02libsystemdLuke Shumaker
2016-06-02Merge branch 'lukeshu/postmove' into lukeshu/masterLuke Shumaker
2016-06-02./move.shLuke Shumaker
2016-06-02stuffLuke Shumaker
2016-06-02Merge branch 'lukeshu/postmove' into lukeshu/masterLuke Shumaker
# Conflicts: # src/journal/Makefile
2016-06-02./move.shLuke Shumaker
2016-06-02get libsystemd-journal-internal buildingLuke Shumaker
2016-06-01fix libbasic out of tree buildLuke Shumaker
2016-06-01Merge branch 'lukeshu/postmove' into lukeshu/masterLuke Shumaker
# Conflicts: # build-aux/Makefile.each.tail/20-systemd.mk
2016-06-01./move.shLuke Shumaker
2016-06-01tidy libfirewallLuke Shumaker
2016-06-01thingLuke Shumaker
2016-06-01more stuffLuke Shumaker
2016-06-01revert some changesLuke Shumaker
2016-06-01stuffLuke Shumaker
2016-06-01work on libsharedLuke Shumaker
2016-06-01Merge branch 'lukeshu/postmove' into lukeshu/masterLuke Shumaker
# Conflicts: # build-aux/Makefile.once.head/20-systemd.mk # build-aux/Makefile.once.tail/20-systemd.mk # config.mk.in # src/libbasic/Makefile # src/libshared/Makefile # src/libsystemd/libsystemd-internal/Makefile
2016-06-01./move.shLuke Shumaker
2016-06-01get libbasic to build againLuke Shumaker
2016-06-01stuffLuke Shumaker
2016-06-01tidyLuke Shumaker
2016-06-01Merge branch 'lukeshu/postmove' into lukeshu/masterLuke Shumaker
# Conflicts: # src/journal/Makefile # src/libsystemd/Makefile # src/libsystemd/libsystemd-internal/Makefile # src/libsystemd/libsystemd-journal-internal/Makefile
2016-06-01stuffLuke Shumaker
2016-06-01./move.shLuke Shumaker
2016-06-01Makefile: systemd-nspawn use symlinks instead of copyingLuke Shumaker
2016-06-01Merge branch 'lukeshu/postmove' into lukeshu/masterLuke Shumaker
# Conflicts: # am-pretty.mk # config.mk.in # src/journal/Makefile # src/kernel-install/Makefile # src/libbasic/Makefile # src/libfirewall/Makefile # src/libshared/Makefile # src/libsystemd/Makefile # src/libsystemd/libsystemd-internal/Makefile # src/libsystemd/libsystemd-journal-internal/Makefile # src/libsystemd/src/Makefile # src/systemd-nspawn/Makefile # src/systemd-nspawn/nspawn-network.c # src/udev/udev.h
2016-06-01./move.shLuke Shumaker
2016-06-01new autothingLuke Shumaker
2016-05-27stuffLuke Shumaker
2016-05-26re-add network-util.h includesLuke Shumaker
2016-05-26Merge branch 'lukeshu-postmove' into lukeshuLuke Shumaker
# Conflicts: # src/libshared/Makefile
2016-05-26run itLuke Shumaker
2016-05-26Merge branch 'post' into lukeshu-postmoveLuke Shumaker
# Conflicts: # Makefile.am # am-pretty.mk # common.once.head.mk # config.mk.in # discard.mk # src/kernel-install/Makefile # src/libbasic/Makefile # src/libcore/Makefile # src/libfirewall/Makefile # src/libshared/Makefile # src/libsystemd/Makefile # src/libsystemd/src/Makefile # src/libudev/Makefile # src/libudev/src/Makefile # src/system/systemd/Makefile # src/systemd-nspawn/.gitignore # src/systemd-nspawn/Makefile
2016-05-26run itLuke Shumaker
2016-05-26oopsLuke Shumaker
2016-05-26move stuffLuke Shumaker
2016-05-25stuffLuke Shumaker
2016-05-25run itLuke Shumaker
2016-05-25FSDG: systemd-resolved: Default to hostname "gnu-linux" instead of "linux"Luke Shumaker
2016-05-25FSDG: os-release: Default to NAME "GNU/Linux" instead of "Linux".Luke Shumaker
2016-05-25FSDG: os-release: Default to PRETTY_NAME "GNU/Linux" instead of "Linux".Luke Shumaker
2016-05-25core: revert "core: resolve specifier in config_parse_exec()"systemd/v229-3Evgeny Vereshchagin
This reverts commit cb48dfca6a8bc15d9081651001a16bf51e03838a. Exec*-settings resolve specifiers twice: %%U -> config_parse_exec [cb48dfca6a8] -> %U -> service_spawn -> 0 Fixes #2637
2016-05-25udev: fix cg_unified() return code checkingLennart Poettering
Fixes fall-out from 8b3aa503c171acdb9ec63484a8c50e2680d31e79. Fixes: #2635
2016-05-25core: fix assertion checkLennart Poettering
Fixes: #2632
2016-05-25networkd: FIONREAD is not reliable on some socketsLennart Poettering
Fixes: #2457
2016-05-21networkd-ndisc: do not return value from void functionsystemd/v230Zbigniew Jędrzejewski-Szmek
Fixup for #3304. Only warn, and not return, because that's what sd_dhcp6_client_start() does right below the call to sd_dhcp6_client_set_local_address().
2016-05-21run: do not try to use reply after freeing it (#3318)Zbigniew Jędrzejewski-Szmek
We'd call sd_bus_message_unref and then proceed to use variables pointing into the reply buffer (fd and char*). dup the fd and copy the string before destorying the reply. This makes systemd-run run again for me. https://bugzilla.redhat.com/show_bug.cgi?id=1337636
2016-05-22libsystemd-network: use recv(..., 0) instead of read(...) (#3317)Tom Gundersen
According to recv(2) these should be the same, but that is not true. Passing a buffer of length 0 to read is defined to be a noop according to read(2), but passing a buffer of length 0 to recv will discard the pending pacet. We can easily hit this as we allocate our buffer size depending on the size of the incoming packet (using FIONREAD). As pointed out in issue #3299 simply sending an empty UDP packet to the DHCP client port will trigger a busy loop in networkd as we are polling on the socket but never discarding the empty packet. This reverts ad5ae47a0d159ea473c9730d7e0298a3e5d31cf6 but fixes the same issue.