Re: [systemd-devel] [systemd-commits] TODO

2013-01-10 Thread Tollef Fog Heen
]] Lennart Poettering > Uh, ah. I prefer having systemdall however as an index only. Not really > convinced such a merged page makes much sense for us. That doesn't sound like systemdall, it sounds like systemd(7). The useful thing about zshall (and by extension systemdall) is it's more greppab

Re: [systemd-devel] [PATCH 3/3] bootchart: Convert malloc/memset to calloc.

2013-01-10 Thread David Strauss
+1, especially for the reduced chance of changes happening to the malloc but not the memset causing mysterious bug. On Fri, Jan 11, 2013 at 5:35 AM, Auke Kok wrote: > --- > src/bootchart/bootchart.c | 5 ++--- > src/bootchart/log.c | 10 -- > 2 files changed, 6 insertions(+), 9 de

Re: [systemd-devel] SSL for gatewayd

2013-01-10 Thread David Strauss
On Thu, Jan 10, 2013 at 10:54 PM, Zbigniew Jędrzejewski-Szmek wrote: > Can you say how things would work in your scheme? The scheme we use at Pantheon is that plus mapping the CN to "user" and OU to "group." Then, we typically manage a grant list based on groups but with a logging trail that reco

Re: [systemd-devel] [systemd-commits] TODO

2013-01-10 Thread Zbigniew Jędrzejewski-Szmek
On Thu, Jan 10, 2013 at 09:30:02PM +0100, Tom Gundersen wrote: > On Jan 10, 2013 9:17 PM, "Zbigniew Jędrzejewski-Szmek" > wrote: > > > > On Thu, Jan 10, 2013 at 08:30:53PM +0100, Lennart Poettering wrote: > > > On Thu, 10.01.13 03:30, Zbigniew Jędrzejewski-Szmek ([email protected]) > wrote: > > >

Re: [systemd-devel] [PATCH 1/3] bootchart: Convert !strcmp usage to streq.

2013-01-10 Thread Zbigniew Jędrzejewski-Szmek
Applied all three. Zbyszek ___ systemd-devel mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/systemd-devel

Re: [systemd-devel] [systemd-commits] TODO

2013-01-10 Thread Zbigniew Jędrzejewski-Szmek
On Thu, Jan 10, 2013 at 08:30:53PM +0100, Lennart Poettering wrote: > On Thu, 10.01.13 03:30, Zbigniew Jędrzejewski-Szmek ([email protected]) wrote: > > > > > On Wed, Jan 09, 2013 at 06:10:58PM -0800, Lennart Poettering wrote: > > > +* add a man page "systemdall" that lists all of systemd's man p

Re: [systemd-devel] bootchart: tabs to spaces?

2013-01-10 Thread Kok, Auke-jan H
On Thu, Jan 10, 2013 at 11:41 AM, Thomas H.P. Andersen wrote: > On Thu, Jan 10, 2013 at 7:24 PM, Kok, Auke-jan H > wrote: >> On Thu, Jan 10, 2013 at 3:35 AM, Kay Sievers wrote: >>> On Thu, Jan 10, 2013 at 6:49 AM, Alessandro Delgado >>> wrote: I like tabs better. Though the quest

[systemd-devel] [PATCH 1/3] bootchart: Convert !strcmp usage to streq.

2013-01-10 Thread Auke Kok
--- src/bootchart/bootchart.c | 21 +++-- src/bootchart/log.c | 5 +++-- 2 files changed, 14 insertions(+), 12 deletions(-) diff --git a/src/bootchart/bootchart.c b/src/bootchart/bootchart.c index 3d77bab..7bcfd98 100644 --- a/src/bootchart/bootchart.c +++ b/src/bootchart/b

[systemd-devel] [PATCH 2/3] bootchart: fix a -Wshadow warning for "now".

2013-01-10 Thread Auke Kok
--- src/bootchart/log.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/bootchart/log.c b/src/bootchart/log.c index c697121..ff70e2d 100644 --- a/src/bootchart/log.c +++ b/src/bootchart/log.c @@ -39,11 +39,11 @@ DIR *proc; double gettime_ns(void) { -struct

[systemd-devel] [PATCH 3/3] bootchart: Convert malloc/memset to calloc.

2013-01-10 Thread Auke Kok
--- src/bootchart/bootchart.c | 5 ++--- src/bootchart/log.c | 10 -- 2 files changed, 6 insertions(+), 9 deletions(-) diff --git a/src/bootchart/bootchart.c b/src/bootchart/bootchart.c index 7bcfd98..37d8fbe 100644 --- a/src/bootchart/bootchart.c +++ b/src/bootchart/bootchart.c @@

Re: [systemd-devel] bootchart: tabs to spaces?

2013-01-10 Thread Thomas H.P. Andersen
On Thu, Jan 10, 2013 at 7:24 PM, Kok, Auke-jan H wrote: > On Thu, Jan 10, 2013 at 3:35 AM, Kay Sievers wrote: >> On Thu, Jan 10, 2013 at 6:49 AM, Alessandro Delgado >> wrote: >>> I like tabs better. >>> >>> Though the question should answer itself looking at the involving >>> environment codebas

Re: [systemd-devel] [systemd-commits] TODO

2013-01-10 Thread Lennart Poettering
On Thu, 10.01.13 03:30, Zbigniew Jędrzejewski-Szmek ([email protected]) wrote: > > On Wed, Jan 09, 2013 at 06:10:58PM -0800, Lennart Poettering wrote: > > +* add a man page "systemdall" that lists all of systemd's man pages, > > inspired by zsh's "zshall" page > > Shouldn't just make-man-index.

Re: [systemd-devel] [systemd-commits] TODO

2013-01-10 Thread Lennart Poettering
On Thu, 10.01.13 21:06, Andrey Borzenkov ([email protected]) wrote: > В Thu, 10 Jan 2013 03:30:53 +0100 > Zbigniew Jędrzejewski-Szmek пишет: > > > On Wed, Jan 09, 2013 at 06:10:58PM -0800, Lennart Poettering wrote: > > > +* add a man page "systemdall" that lists all of systemd's man pages, >

Re: [systemd-devel] [PATCH] bootchart: make sure that every read buffer is null terminated

2013-01-10 Thread Kok, Auke-jan H
On Thu, Jan 10, 2013 at 6:24 AM, Kay Sievers wrote: > On Thu, Jan 10, 2013 at 3:16 PM, Lukáš Nykrýn wrote: >> Hello, >> I am not sure about this one. There is a probability that bufgetline >> during first call in src/bootchart/log.c:265 can get string which is not >> null-terminated. > > Applied.

Re: [systemd-devel] bootchart: tabs to spaces?

2013-01-10 Thread Kok, Auke-jan H
On Thu, Jan 10, 2013 at 3:35 AM, Kay Sievers wrote: > On Thu, Jan 10, 2013 at 6:49 AM, Alessandro Delgado > wrote: >> I like tabs better. >> >> Though the question should answer itself looking at the involving >> environment codebase. Consistency is what matters. > > Tabs would make sense if we w

Re: [systemd-devel] [systemd-commits] TODO

2013-01-10 Thread Andrey Borzenkov
В Thu, 10 Jan 2013 03:30:53 +0100 Zbigniew Jędrzejewski-Szmek пишет: > On Wed, Jan 09, 2013 at 06:10:58PM -0800, Lennart Poettering wrote: > > +* add a man page "systemdall" that lists all of systemd's man pages, > > inspired by zsh's "zshall" page > > Shouldn't just make-man-index.py be tweake

Re: [systemd-devel] [PATCH] bootchart: make sure that every read buffer is null terminated

2013-01-10 Thread Kay Sievers
On Thu, Jan 10, 2013 at 3:16 PM, Lukáš Nykrýn wrote: > Hello, > I am not sure about this one. There is a probability that bufgetline > during first call in src/bootchart/log.c:265 can get string which is not > null-terminated. Applied. Thanks, Kay ___

[systemd-devel] [PATCH] bootchart: make sure that every read buffer is null terminated

2013-01-10 Thread Lukáš Nykrýn
Hello, I am not sure about this one. There is a probability that bufgetline during first call in src/bootchart/log.c:265 can get string which is not null-terminated. Lukas >From bb19a933eee9bad3f67d3069bfea6c4f476a840a Mon Sep 17 00:00:00 2001 From: Lukas Nykryn Date: Thu, 10 Jan 2013 14:36:42 +0

Re: [systemd-devel] SSL for gatewayd

2013-01-10 Thread Zbigniew Jędrzejewski-Szmek
On Thu, Jan 10, 2013 at 09:59:59AM +0200, Oleksii Shevchuk wrote: > > But for the normal > > use case, where you just want to browse messages from one computer > > and another computer under your control > > In this situation CA shouldn't be used. SSH-like scheme (without third-party) > is > ok f

Re: [systemd-devel] bootchart: tabs to spaces?

2013-01-10 Thread Kay Sievers
On Thu, Jan 10, 2013 at 6:49 AM, Alessandro Delgado wrote: > I like tabs better. > > Though the question should answer itself looking at the involving > environment codebase. Consistency is what matters. Tabs would make sense if we would use them strictly for indentation and never for any kind of

Re: [systemd-devel] SSL for gatewayd

2013-01-10 Thread Oleksii Shevchuk
> But for the normal > use case, where you just want to browse messages from one computer > and another computer under your control In this situation CA shouldn't be used. SSH-like scheme (without third-party) is ok for this usecase. Or maybe SASL authentication + TLS/brokenPKI combo should be use