Re: [systemd-devel] French translation for systemd

2013-11-16 Thread Ronny Chevalier
2013/11/17 Sylvain Plantefeve : > Thanks a lot! > > Sorry for the line-wraps thing, I'm new to contributing patches, and did not > expect gmail to do that... You can use git format-patch then git send-mail to send patches, and avoid such issues. > > If you are also interested in the french transla

Re: [systemd-devel] French translation for systemd

2013-11-16 Thread Sylvain Plantefeve
Thanks a lot! Sorry for the line-wraps thing, I'm new to contributing patches, and did not expect gmail to do that... If you are also interested in the french translation of the journal's catalog, please find it for review in attachment (I can't find the damn setting to avoid line wrapping for no

Re: [systemd-devel] [RFC] xyzctl-common

2013-11-16 Thread Peeters Simon
2013/11/16 Zbigniew Jędrzejewski-Szmek : > On Sat, Nov 16, 2013 at 07:41:13PM +0100, Peeters Simon wrote: >> hello all, >> >> During the sd_bus porting I noted that the *ctl tools (and >> systemd-analyze) contain a lot of common boilerplate code. >> >> So the basic idea is to split this boilerplate

Re: [systemd-devel] [systemd-bugs] Russian translation for systemd

2013-11-16 Thread Sergey Ptashnick
On 16.11.2013 20:40, Zbigniew Jędrzejewski-Szmek wrote: > Can one of you prepare a merge of both translations, > picking the best parts? Done. I also updated russian catalog for Journal (in according to commit 9444b1f2). Julia, Alexander, any comments? # translation of ru.po to Rissian # Julia Dro

[systemd-devel] [PATCH 3/4] core: support Distribute=n to distribute to n SO_REUSEPORT workers

2013-11-16 Thread Shawn Landden
v3: make each worker its own service v4: be less intrusive v5: misc fixups --- TODO | 3 - man/systemd.socket.xml| 11 src/core/dbus-socket.c| 2 + src/core/load-fragment-gperf.gperf.m4 | 1 + src/core/service.c

[systemd-devel] [PATCH 4/4] core: lazy distribute for Distribute pools

2013-11-16 Thread Shawn Landden
--- man/systemd.socket.xml| 9 + src/core/dbus-socket.c| 2 ++ src/core/load-fragment-gperf.gperf.m4 | 1 + src/core/socket.c | 7 ++- src/core/socket.h | 1 + 5 files changed, 19 insertions(+), 1 deletion(-) diff

[systemd-devel] [PATCH 2/4] core/socket: fix SO_REUSEPORT

2013-11-16 Thread Shawn Landden
--- src/core/load-fragment-gperf.gperf.m4 | 1 + src/core/socket.c | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/core/load-fragment-gperf.gperf.m4 b/src/core/load-fragment-gperf.gperf.m4 index e3025d2..b64fdc9 100644 --- a/src/core/load-fragment-gpe

Re: [systemd-devel] [PATCH] core: support Distribute=n to distribute to n SO_REUSEPORT workers

2013-11-16 Thread Shawn
On Sat, Nov 16, 2013 at 7:38 AM, Zbigniew Jędrzejewski-Szmek wrote: > On Fri, Nov 15, 2013 at 08:22:14PM -0800, Shawn Landden wrote: >> v3: make each worker its own service >> v4: be less intrusive > Hi Shawn, > unfortunately this doesn't apply cleanly. Can you rebase? thats because it is 3rd in a

[systemd-devel] [PATCH 1/4] core/socket: use _cleanup_free_

2013-11-16 Thread Shawn Landden
--- src/core/socket.c | 10 ++ 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/src/core/socket.c b/src/core/socket.c index 03b8f92..f505e4f 100644 --- a/src/core/socket.c +++ b/src/core/socket.c @@ -1475,7 +1475,7 @@ static void socket_enter_running(Socket *s, int cfd) {

Re: [systemd-devel] [RFC] xyzctl-common

2013-11-16 Thread Zbigniew Jędrzejewski-Szmek
On Sat, Nov 16, 2013 at 07:41:13PM +0100, Peeters Simon wrote: > hello all, > > During the sd_bus porting I noted that the *ctl tools (and > systemd-analyze) contain a lot of common boilerplate code. > > So the basic idea is to split this boilerplate out into > xyzctl-common.[ch] so that f.ex the

[systemd-devel] [RFC] xyzctl-common

2013-11-16 Thread Peeters Simon
hello all, During the sd_bus porting I noted that the *ctl tools (and systemd-analyze) contain a lot of common boilerplate code. So the basic idea is to split this boilerplate out into xyzctl-common.[ch] so that f.ex the bottom hostnamectl.c would look like: ... static void help(void ) {...} en

Re: [systemd-devel] [PATCH] Fix RemainAfterExit services keeping a hold on console

2013-11-16 Thread Zbigniew Jędrzejewski-Szmek
On Thu, Nov 14, 2013 at 03:52:54PM +0100, Olivier Brunel wrote: > When a service exits succesfully and has RemainAfterExit set, its hold > on the console (in m->n_on_console) wasn't released since the unit state > didn't change. Applied, thanks. Zbyszek

Re: [systemd-devel] French translation for systemd

2013-11-16 Thread Zbigniew Jędrzejewski-Szmek
On Fri, Nov 15, 2013 at 04:02:27PM +0100, Sylvain Plantefeve wrote: > Fixed. > > --- > --- /dev/null > +++ b/po/fr.po > @@ -0,0 +1,397 @@ > +# French translations for systemd package Applied, thanks. Please note that your mailer line-wraps patches. This one was simple to fix, because there were o

Re: [systemd-devel] [systemd-bugs] Russian translation for systemd

2013-11-16 Thread Zbigniew Jędrzejewski-Szmek
On Sat, Nov 16, 2013 at 01:34:26AM +0400, Sergey Ptashnick wrote: > On 15.11.2013 22:07, Juliette Tux wrote: > >> Hint2 -- I'm commiting alot, and the moment the new version is out, good > >> developers usually make an announcement asking for renewed translation. Do > >> you practice this at system

Re: [systemd-devel] [PATCH] core: support Distribute=n to distribute to n SO_REUSEPORT workers

2013-11-16 Thread Zbigniew Jędrzejewski-Szmek
On Fri, Nov 15, 2013 at 08:22:14PM -0800, Shawn Landden wrote: > v3: make each worker its own service > v4: be less intrusive Hi Shawn, unfortunately this doesn't apply cleanly. Can you rebase? > diff --git a/man/systemd.socket.xml b/man/systemd.socket.xml > index 7c10c58..92a9275 100644 > --- a/m

Re: [systemd-devel] [PATCH] selinux: fix selinux check for transient units

2013-11-16 Thread Lennart Poettering
On Thu, 14.11.13 15:43, Daniel J Walsh (dwa...@redhat.com) wrote: > > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > On 11/14/2013 12:50 PM, Harald Hoyer wrote: > > On 11/05/2013 11:12 PM, Daniel J Walsh wrote: > >> On 11/05/2013 12:22 PM, Lennart Poettering wrote: > > > >> Ok lets add a c