[systemd-commits] 4 commits - NEWS TODO src/network src/shared
Lennart Poettering
lennart at kemper.freedesktop.org
Tue Aug 26 11:30:22 PDT 2014
NEWS | 6 +++---
TODO | 4 ++++
src/network/networkd-wait-online.c | 2 +-
src/shared/missing.h | 4 ++++
4 files changed, 12 insertions(+), 4 deletions(-)
New commits:
commit 32dfe42c66085c55916e5306a9a07d42d3958b6b
Author: Åukasz Stelmach <stlman at poczta.fm>
Date: Tue Aug 26 12:28:28 2014 +0200
networkd-wait-online: add missing short option 'i' to optstring
diff --git a/src/network/networkd-wait-online.c b/src/network/networkd-wait-online.c
index 6c2fdd1..7143436 100644
--- a/src/network/networkd-wait-online.c
+++ b/src/network/networkd-wait-online.c
@@ -59,7 +59,7 @@ static int parse_argv(int argc, char *argv[]) {
assert(argc >= 0);
assert(argv);
- while ((c = getopt_long(argc, argv, "+hq", options, NULL)) >= 0)
+ while ((c = getopt_long(argc, argv, "+hiq", options, NULL)) >= 0)
switch (c) {
commit 7965435e588c8d2fb824c5fd4b8c2739bc30acdf
Author: Michael Olbrich <m.olbrich at pengutronix.de>
Date: Thu Aug 21 12:38:08 2014 +0200
missing: add BPF_XOR
BPF_XOR was introduced in kernel 3.7
diff --git a/src/shared/missing.h b/src/shared/missing.h
index a9dd274..c80ed2a 100644
--- a/src/shared/missing.h
+++ b/src/shared/missing.h
@@ -593,3 +593,7 @@ static inline int setns(int fd, int nstype) {
#ifndef NET_NAME_RENAMED
# define NET_NAME_RENAMED 4
#endif
+
+#ifndef BPF_XOR
+# define BPF_XOR 0xa0
+#endif
commit daa05349dfefb12638c96e034c11be613bdc39b7
Author: Ansgar Burchardt <ansgar at 43-1.org>
Date: Tue Aug 26 00:19:54 2014 +0200
NEWS: Fix typos.
diff --git a/NEWS b/NEWS
index 7dad765..2fca2cd 100644
--- a/NEWS
+++ b/NEWS
@@ -42,8 +42,8 @@ CHANGES WITH 216:
* systemd-resolved now includes a caching DNS stub resolver
and a complete LLMNR name resolution implementation. A new
- NSS module "nss-resolve" has been added which make be used
- of glibc's own "nss-dns" to resolve hostnames via
+ NSS module "nss-resolve" has been added which can be used
+ instead of glibc's own "nss-dns" to resolve hostnames via
systemd-resolved. Hostnames, addresses and arbitrary RRs may
be resolved via systemd-resolved D-Bus APIs. In contrast to
the glibc internal resolver systemd-resolved is aware of
@@ -606,7 +606,7 @@ CHANGES WITH 214:
* Access modes specified in tmpfiles snippets may now be
prefixed with "~", which indicates that they shall be masked
- by whether the existing file or directly is currently
+ by whether the existing file or directory is currently
writable, readable or executable at all. Also, if specified,
the sgid/suid/sticky bits will be masked for all
non-directories.
commit 8dac15b6e9792c2b0f503ddf78ac499817904a6f
Author: Lennart Poettering <lennart at poettering.net>
Date: Tue Aug 26 20:23:49 2014 +0200
update TODO
diff --git a/TODO b/TODO
index 471d3b2..09f82d3 100644
--- a/TODO
+++ b/TODO
@@ -24,6 +24,10 @@ External:
Features:
+* dbus: add new message hdr field for allowing interactive auth, write spec for it. update dbus spec to mandate that unknown flags *must* be ignored...
+
+* maybe introduce AssertXYZ= similar to ConditionXYZ= that causes a unit to fail (instead of skipping it) if some condition is not true...
+
* remove multi-seat-x now
* refcounting in sd-resolve is borked
More information about the systemd-commits
mailing list