Re: [systemd-devel] [PATCH 1/3] zsh-completion: add missing completions for machinectl

2015-05-16 Thread Zbigniew Jędrzejewski-Szmek
On Wed, Apr 22, 2015 at 03:52:59PM -0700, Lukas Rusak wrote: +_available_machines() { +local -a _machines +_machines=(${(fo)$(__get_available_machines)}) +typeset -U _machines +if [[ -n $_machines ]]; then +_describe 'machines' _machines +else + _message 'no

[systemd-devel] Fwd: [wiki systemd] systemd French doc

2015-05-16 Thread Jiel Beaumadier
Hi, A French documentation was written about systemd : http://lea-linux.org/documentations/Systemd Its main scope is the general public. The documentation tends to be as pedagogic as possible. I think that it could be interesting for French speaking users to put a link towards this doc at the

Re: [systemd-devel] [PATCH 1/3] zsh-completion: add missing completions for machinectl

2015-05-16 Thread Zbigniew Jędrzejewski-Szmek
On Wed, Apr 22, 2015 at 03:52:59PM -0700, Lukas Rusak wrote: Appologies, I'm still getting used to this mailing list thing and using git send-email --- shell-completion/zsh/_machinectl | 84 +--- 1 file changed, 70 insertions(+), 14 deletions(-)

[systemd-devel] socket-activated containers with domain sockets

2015-05-16 Thread Simon Peeters
hej all. I have a kind off weird setup using socket-activated containers: nginx on the host listens on port 80 and has a 'proxy_pass http://unix:/run/http/$host;' directive. then I have webserver@.socket listening on 'ListenStream=/run/http/%I' which in turn activates a container. this works

Re: [systemd-devel] [PATCH 3/3] zsh-completion: add missing completions for systemd-nspawn

2015-05-16 Thread Zbigniew Jędrzejewski-Szmek
On Wed, Apr 22, 2015 at 11:07:39AM -0700, Lukas Rusak wrote: -'--personality=[Control the architecture (personality) reported by uname(2) in the container.]' \ You lost --personality here. I think this was a mistake, so I undid that in the applied patch. Zbyszek

Re: [systemd-devel] [PATCH] buildsys: Remove X_SERVER from AM_CPPFLAGS

2015-05-16 Thread systemd github import bot
Patchset imported to github. Pull request: https://github.com/systemd-devs/systemd/compare/master...systemd-mailing-devs:1431791895-2992-1-git-send-email-crrodriguez%40opensuse.org -- Generated by https://github.com/haraldh/mail2git ___ systemd-devel

Re: [systemd-devel] [PATCH] buildsys: Remove X_SERVER from AM_CPPFLAGS

2015-05-16 Thread Zbigniew Jędrzejewski-Szmek
On Sat, May 16, 2015 at 12:58:15PM -0300, Cristian Rodríguez wrote: It is a leftover from multi-seat-x wrapper which is long gone. --- Makefile.am | 1 - 1 file changed, 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index 211ce6a..4639b2f 100644 --- a/Makefile.am +++

[systemd-devel] [PATCH] buildsys: Remove X_SERVER from AM_CPPFLAGS

2015-05-16 Thread Cristian Rodríguez
It is a leftover from multi-seat-x wrapper which is long gone. --- Makefile.am | 1 - 1 file changed, 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index 211ce6a..4639b2f 100644 --- a/Makefile.am +++ b/Makefile.am @@ -203,7 +203,6 @@ AM_CPPFLAGS = \

Re: [systemd-devel] [PATCH 1/3] zsh-completion: add missing completions for machinectl

2015-05-16 Thread Zbigniew Jędrzejewski-Szmek
On Mon, Apr 27, 2015 at 12:09:47PM -0700, Lukas Rusak wrote: I feel like this is already accomplished. The completion function _sd_machines already lists the running containers. Otherwise currently _available_machines is only used for machinectl start. see,

[systemd-devel] systemd-networkd and openvswitch?

2015-05-16 Thread Marc Haber
Hi, is there any possibility to nicely integrate openvswitch to a system that runs systemd-networkd? While I understand that there does not currrently seem to be native openvswitch support in systemd-networkd, maybe somebody has written unit files to bring up the openvswitch before

Re: [systemd-devel] Will *.network replace resolv.conf? What about Options single-request?

2015-05-16 Thread Christian Brunotte
On Sat, 16 May 2015 15:52:49 +0500 Alexander E. Patrakov patra...@gmail.com wrote: 16.05.2015 02:01, Christian Brunotte wrote: The resolver can send one DNS request packet (IPv4 or IPv6 doesn't matter) that contains queries for both the A and entries and the resolver may answer

Re: [systemd-devel] 60-persistent-storage.rules: add NVMe disks and partitions (again)

2015-05-16 Thread Per Bergqvist
Lennart, Thank you for all the comments. I have changed everything except the 'No space between function name and opening “(“‘. Cannot find anything about that in CODING_STYLE or evidence in other sources. Kept the call to nvme_identify more or less as before, please let me know if it has to

Re: [systemd-devel] [PATCH v2] systemctl: introduce --now for enable, disable and mask

2015-05-16 Thread Jóhann B. Guðmundsson
On 05/15/2015 09:51 AM, Lennart Poettering wrote: But anyway, this is certainly a matter of taste... Or cause for confusion. I asked an noob to run systemctl enable --now unit and he immediately asked back if he ran systemctl enable unit if it would not be enabled immediately so --now

Re: [systemd-devel] 60-persistent-storage.rules: add NVMe disks and partitions (again)

2015-05-16 Thread Mantas Mikulėnas
On May 16, 2015 11:18, Per Bergqvist p...@bst.lu wrote: Lennart, Thank you for all the comments. I have changed everything except the 'No space between function name and opening “(“‘. Cannot find anything about that in CODING_STYLE or evidence in other sources. Most every call in the

Re: [systemd-devel] Will *.network replace resolv.conf? What about Options single-request?

2015-05-16 Thread Mantas Mikulėnas
On Fri, May 15, 2015 at 11:28 PM, Marcel Holtmann mar...@holtmann.org wrote: Hi Lennart, On Mon, May 4, 2015 at 2:57 PM, Christian Brunotte c...@lathspell.de wrote: systemd.network(5) with Options like DNS= and Domains= looks like /etc/resolv.conf will soon be superfluous. In many

Re: [systemd-devel] [systemd-commits] src/shared TODO

2015-05-16 Thread Zbigniew Jędrzejewski-Szmek
On Fri, May 15, 2015 at 05:08:12PM +0200, Lennart Poettering wrote: B1;3802;0cOn Sun, 10.05.15 10:18, Zbigniew Jędrzejewski-Szmek (zbys...@kemper.freedesktop.org) wrote: + +fflush(f); +if (ferror(f)) +return log_error_errno(errno, Failed to write unit

[systemd-devel] [PATCH/resend] Use reflinking to copy kernel

2015-05-16 Thread Zbigniew Jędrzejewski-Szmek
On Fri, May 08, 2015 at 05:11:15PM -0400, Josh Boyer wrote: On May 8, 2015 11:38 AM, Zbigniew Jędrzejewski-Szmek zbys...@in.waw.pl wrote: On Thu, May 07, 2015 at 10:08:56PM -0400, Matthew Miller wrote: On Thu, May 07, 2015 at 04:29:11PM -0500, Ian Pilcher wrote: Hmm. If don't know

Re: [systemd-devel] Fwd: [wiki systemd] systemd French doc

2015-05-16 Thread Zbigniew Jędrzejewski-Szmek
On Sat, May 16, 2015 at 05:43:13PM +0200, Jiel Beaumadier wrote: Hi, A French documentation was written about systemd : http://lea-linux.org/documentations/Systemd Its main scope is the general public. The documentation tends to be as pedagogic as possible. I think that it could be

Re: [systemd-devel] [PATCH 1/3] core: Add LISTEN_NAMES environment variable

2015-05-16 Thread Zbigniew Jędrzejewski-Szmek
On Fri, May 15, 2015 at 05:35:48PM +0200, Lennart Poettering wrote: On Fri, 15.05.15 17:09, Krzysztof Opasiak (k.opas...@samsung.com) wrote: When passing file descriptors to service systemd pass also two environment variable: - LISTEN_PID - PID of service - LISTEN_FDS - Number of file