Re: [systemd-devel] Problems with systemd master

2014-02-15 Thread Koen Kooi
Op 14 feb. 2014, om 19:16 heeft Greg KH gre...@linuxfoundation.org het volgende geschreven: On Fri, Feb 14, 2014 at 02:30:00PM -0300, Cristian Rodríguez wrote: El 14/02/14 13:32, Richard Purdie escribió: Both conditions are checked, can you find out why the second seems to fail too, it

[systemd-devel] [PATCH] build: add white space between _XZ_FEATURE_ and _SECCOMP_FEATURE_

2014-02-15 Thread Djalal Harouni
--- src/core/build.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/build.h b/src/core/build.h index f04f03f..c8117ed 100644 --- a/src/core/build.h +++ b/src/core/build.h @@ -87,4 +87,4 @@ #define _SECCOMP_FEATURE_ -SECCOMP #endif -#define SYSTEMD_FEATURES

Re: [systemd-devel] [PATCH] core: fix detection of dead process v2.

2014-02-15 Thread Lennart Poettering
On Sat, 15.02.14 02:42, Yuxuan Shui (yshu...@gmail.com) wrote: Also I would like to point out that the call to manager_get_unit_by_pid in manager_dispatch_sigchld would always receive a NULL since a zombie process always belongs to the root cgroup. Yupp, I know. And it's really annoying

Re: [systemd-devel] [PATCH] rules: name Dell iDRAC virtual usb nic

2014-02-15 Thread Kay Sievers
On Thu, Feb 13, 2014 at 12:56 AM, charles_r...@dell.com wrote: On 02/12/2014 09:21 AM, Kay Sievers wrote: On Wed, Feb 12, 2014 at 2:12 PM, charles_r...@dell.com wrote: From: Charles Rose charles_r...@dell.com Dell servers contain a virtual usb nic for systems management. Name the

Re: [systemd-devel] [PATCH] rules: name Dell iDRAC virtual usb nic

2014-02-15 Thread Tom Gundersen
On 15 Feb 2014 19:59, Kay Sievers k...@vrfy.org wrote: On Thu, Feb 13, 2014 at 12:56 AM, charles_r...@dell.com wrote: On 02/12/2014 09:21 AM, Kay Sievers wrote: On Wed, Feb 12, 2014 at 2:12 PM, charles_r...@dell.com wrote: From: Charles Rose charles_r...@dell.com Dell servers

[systemd-devel] [PATCH] nspawn: do not check audit if --boot argument is not set

2014-02-15 Thread Djalal Harouni
Currently systemd-nspawn will call reset_audit_loginuid() and check if audit is enabled in the kernel even if it was invoked without the --boot argument. This makes systemd-nspawn print the audit error message and sleep(5) on every execution. This was introduced by commit db999e0f923ca6. Fix it