[lxc-devel] [PATCH] Fix typos identified by lintian

2013-02-18 Thread Stéphane Graber
Lintian spotted those two typos. Signed-off-by: Stéphane Graber stgra...@ubuntu.com --- configure.ac | 2 +- src/lxc/log.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 931e0d6..1916361 100644 --- a/configure.ac +++ b/configure.ac @@

[lxc-devel] [PATCH] Link against pthread when not on bionic.

2013-02-18 Thread Stéphane Graber
dpkg spotted that we're not explicitly linking against pthread even though we use some of its symbols (sem_*). Signed-off-by: Stéphane Graber stgra...@ubuntu.com --- src/lxc/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lxc/Makefile.am b/src/lxc/Makefile.am

[lxc-devel] Inconsistency in clearenv() between command line and API

2013-02-18 Thread Stéphane Graber
Hey Serge, Updating some production servers to newer IRC I noticed a slight breakage with the clearenv() change introduced a month or so ago. We typically want clearenv() to happen just before the final exec so that we still have the existing environment for anything before that, most

Re: [lxc-devel] [PATCH] Link against pthread when not on bionic.

2013-02-18 Thread Daniel Lezcano
On 02/18/2013 06:23 PM, Stéphane Graber wrote: dpkg spotted that we're not explicitly linking against pthread even though we use some of its symbols (sem_*). uh ? wait. We shouldn't link against the lib pthread. I don't think sem_* is a symbol coming from the pthread library. Could you give

Re: [lxc-devel] [PATCH] Link against pthread when not on bionic.

2013-02-18 Thread Stéphane Graber
On 02/18/2013 03:40 PM, Daniel Lezcano wrote: On 02/18/2013 06:23 PM, Stéphane Graber wrote: dpkg spotted that we're not explicitly linking against pthread even though we use some of its symbols (sem_*). uh ? wait. We shouldn't link against the lib pthread. I don't think sem_* is a

Re: [lxc-devel] [PATCH] only INFO rcfile if asprintf successfully allocates it

2013-02-18 Thread Stéphane Graber
On 02/12/2013 01:13 PM, Serge Hallyn wrote: Quoting Dwight Engen (dwight.en...@oracle.com): Signed-off-by: Dwight Engen dwight.en...@oracle.com Indeed. thanks :) Acked-by: Serge E. Hallyn serge.hal...@ubuntu.com Pushed to staging. Thanks --- src/lxc/lxc_start.c | 2 +- 1 file

Re: [lxc-devel] [PATCH] lxc-alpine: autodetect standard bridges and set hwaddress

2013-02-18 Thread Stéphane Graber
On 02/13/2013 10:30 AM, Serge Hallyn wrote: Quoting Natanael Copa (nc...@alpinelinux.org): Check for lxcbr0, virbr0 and br0 and use one of those if they exist. Set mac address if network type is veth. Signed-off-by: Natanael Copa nc...@alpinelinux.org Acked-by: Serge E. Hallyn

Re: [lxc-devel] [PATCH] legacy ls: only output appropriate directories/containers

2013-02-18 Thread Stéphane Graber
On 02/12/2013 03:54 PM, Dwight Engen wrote: For lxc-ls without --active, only output a directory in lxc_path if it contains a file named config. This avoids extra directories that may exist in lxc_path, for example .snapshot if lxc_path is an nfs mount. For lxc-ls with --active, don't output

Re: [lxc-devel] [PATCH] Link against pthread when not on bionic.

2013-02-18 Thread Daniel Lezcano
On 02/18/2013 09:46 PM, Stéphane Graber wrote: On 02/18/2013 03:40 PM, Daniel Lezcano wrote: On 02/18/2013 06:23 PM, Stéphane Graber wrote: dpkg spotted that we're not explicitly linking against pthread even though we use some of its symbols (sem_*). uh ? wait. We shouldn't link against the

Re: [lxc-devel] [PATCH] Link against pthread when not on bionic.

2013-02-18 Thread Dwight Engen
On Mon, 18 Feb 2013 15:46:24 -0500 Stéphane Graber stgra...@ubuntu.com wrote: On 02/18/2013 03:40 PM, Daniel Lezcano wrote: On 02/18/2013 06:23 PM, Stéphane Graber wrote: dpkg spotted that we're not explicitly linking against pthread even though we use some of its symbols (sem_*). uh

Re: [lxc-devel] [PATCH] Link against pthread when not on bionic.

2013-02-18 Thread Stéphane Graber
On 02/18/2013 04:10 PM, Daniel Lezcano wrote: On 02/18/2013 09:46 PM, Stéphane Graber wrote: On 02/18/2013 03:40 PM, Daniel Lezcano wrote: On 02/18/2013 06:23 PM, Stéphane Graber wrote: dpkg spotted that we're not explicitly linking against pthread even though we use some of its symbols

[lxc-devel] On the road to rc1

2013-02-18 Thread Stéphane Graber
Now that alpha3 is out (thanks Daniel!), we should now focus on the goals for rc1. As a reminder, the expected time for the rc1 pull request is March. My current plan is to send the pull request on the 11th. The plan being to release 0.9 in early April as long as nothing wrong was spotted in

Re: [lxc-devel] On the road to rc1

2013-02-18 Thread Stéphane Graber
On 02/18/2013 05:45 PM, Stéphane Graber wrote: Now that alpha3 is out (thanks Daniel!), we should now focus on the goals for rc1. As a reminder, the expected time for the rc1 pull request is March. My current plan is to send the pull request on the 11th. The plan being to release 0.9 in

[lxc-devel] [PATCH] lxc-ubuntu{-cloud}: Config layout tweaking

2013-02-18 Thread Stéphane Graber
This commit tweaks the layout of the config file for the Ubuntu templates. With this, we now get a clear network config group, then a path related group, then a bunch of random config options and the end of the config is apparmor, capabilities and cgroups. Signed-off-by: Stéphane Graber