Re: [lxc-devel] [PATCH 1/1] lxc-ps: Nit - Avoid blank CONTAINER column

2010-02-11 Thread Michel Normand
Le mercredi 10 février 2010 à 20:25 -0800, Sukadev Bhattiprolu a écrit : > From: Sukadev Bhattiprolu > Date: Wed, 10 Feb 2010 20:09:17 -0800 > Subject: [PATCH 1/1] lxc-ps: Nit - Avoid blank CONTAINER column > > The contianer name is not printed in the lxc-ps output unless the --lxc > option is sp

Re: [lxc-devel] [PATCH 1/1] lxc-ps: Nit - Avoid blank CONTAINER column

2010-02-11 Thread Michel Normand
Le jeudi 11 février 2010 à 11:08 +0100, Michel Normand a écrit : > Le mercredi 10 février 2010 à 20:25 -0800, Sukadev Bhattiprolu a écrit : > > From: Sukadev Bhattiprolu > > Date: Wed, 10 Feb 2010 20:09:17 -0800 > > Subject: [PATCH 1/1] lxc-ps: Nit - Avoid blank CONTAINE

Re: [lxc-devel] [PATCH 1/1] lxc-ps: Nit - Avoid blank CONTAINER column

2010-02-11 Thread Michel Normand
Le jeudi 11 février 2010 à 10:19 -0800, Sukadev Bhattiprolu a écrit : > Serge E. Hallyn [se...@us.ibm.com] wrote: > | Quoting Michel Normand (norm...@fr.ibm.com): > | > Le jeudi 11 février 2010 à 11:08 +0100, Michel Normand a écrit : > | > > Le mercredi 10 février 2010 à

[lxc-devel] [PATCH 2/4] lxc: update .gitignore w/ autogen.sh created files

2010-05-29 Thread Michel Normand
remove trailing / for .pc and patches that may be symbolic links. and remove all test/* files that do not exist anymore since commit 92d385229be040cf034ac6efd9405b7bdfe06a3e Signed-off-by: Michel Normand --- .gitignore | 27 ++- 1 files changed, 6 insertions(+), 21

[lxc-devel] [PATCH 3/4] lxc: update man pages about logpriority

2010-05-29 Thread Michel Normand
Signed-off-by: Michel Normand --- doc/common_options.sgml.in |5 + 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/doc/common_options.sgml.in b/doc/common_options.sgml.in index 4a0b689..32e89ce 100644 --- a/doc/common_options.sgml.in +++ b/doc/common_options.sgml.in

[lxc-devel] [PATCH 1/4] lxc: remove remaining .cvsignore files

2010-05-29 Thread Michel Normand
Signed-off-by: Michel Normand --- .cvsignore | 12 config/.cvsignore |8 doc/.cvsignore |8 scripts/.cvsignore |4 src/.cvsignore |5 - src/lxc/.cvsignore | 29 - test/.cvsignore| 19

[lxc-devel] [PATCH 4/4] lxc: lxc-unshare asprintf error checking

2010-05-29 Thread Michel Normand
same correction in lxc_unshare.c as already done in lxc_start.c and lxc_restart.c by Nathan in commit fa9ab20562649707d44bfff90df44b7bc1a9f8b3 Signed-off-by: Michel Normand --- src/lxc/lxc_unshare.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/lxc/lxc_unshare.c

Re: [lxc-devel] template-script for ubuntu [lucid] containers

2010-05-30 Thread Michel Normand
On 30/05/2010 19:07, Wilhelm wrote: > Hi, > > for all interested: attached you'll find a template script for ubuntu > containers. interesting attachment. could we take it in lxc as a new template exemple in scripts/lxc-ubuntu.in ? It will need few adaptations using some "@xxx@" but easy to change.

Re: [lxc-devel] [RFC][PATCH][lxc]: unfreeze while stopping

2010-06-09 Thread Michel Normand
Le mardi 08 juin 2010 à 19:07 -0700, Sukadev Bhattiprolu a écrit : > I am not too sure, but if user wants to stop a container is there a > reason not to implicitly unfreeze the container and stop ? > > --- > From: Sukadev Bhattiprolu > Date: Tue, 8 Jun 2010 18:42:00 -0700 > Subject: [PATCH 1/1]:

Re: [lxc-devel] Updating the web page?

2011-02-21 Thread Michel Normand
Le 21/02/2011 11:20, Daniel Lezcano a écrit : > On 02/21/2011 11:08 AM, Daniel Lezcano wrote: >> On 02/17/2011 02:49 AM, Rob Landley wrote: >>> I want to collate the kernel namespaces documentation, man pages, and >>> add some cgroup docs under a documentation page. This involves changing >>> the

[lxc-devel] [PATCH] lxc-* tools are vulnerable for arguments with spaces

2011-03-15 Thread Michel Normand
this is related to the bug http://sourceforge.net/tracker/?func=detail&aid=3113612&group_id=163076&atid=826303 that suggested to modify bash lxc script to properly use "$@" in place of "$*" Signed-off-by: Michel Normand --- src/lxc/lxc-ls.in |4 ++-

[lxc-devel] [PATCH] lxc-* tools are vulnerable for arguments with spaces

2011-03-15 Thread Michel Normand
The related patch was not tested, I only wrote the code change as per the text of related bug http://sourceforge.net/tracker/?func=detail&aid=3113612&group_id=163076&atid=826303 because I saw the bug in status closed but still found some scripts that are using $* in place of $@ --- Michel --