[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 --- tem

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.

[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 0.9~

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, Dwight Engen wrote: > On Mon, 18 Feb 2013 15:46:24 -0500 > 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 u

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

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 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.

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 li

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 ou

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 > > Acked-by: Serge E. Hallyn Pushed to staging.

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 > > Indeed. thanks :) > > Acked-by: Serge E. Hallyn Pushed to staging. Thanks >> --- >> src/lxc/lxc_start.c | 2 +- >> 1 file changed, 1 insertion(+), 1 deletion(-) >

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_

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

[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 importantly

[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 --- src/lxc/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lxc/Makefile.am b/src/lxc/Makefile.am index 8974ca9..a0077

[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 --- 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 @@ -161,7 +161,7 @@ AC_AR

[lxc-devel] Strange log Message

2013-02-18 Thread Ducos Laurent
Hello I found this message many times on my server since I activated lxc 8425 Time(s): unregister_netdevice: waiting for lo to become free. Usage count = 1 Host bridge: Intel Corporation Xeon E3-1200 RAID bus controller: Hewlett-Packard Company Smart Array G6 controllers 3.5.0-17-generic Intel(R

[lxc-devel] [GIT] lxc tag, lxc-0.9.0.alpha3, created. 64e9369c8f82ef9256388726b77b20f042a54809

2013-02-18 Thread Daniel Lezcano
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "lxc". The tag, lxc-0.9.0.alpha3 has been created at 64e9369c8f82ef9256388726b77b20f042a54809 (commit) - Log --