[lxc-devel] LXC 1.1.4 has been released!

2015-10-06 Thread Stéphane Graber
Hello everyone, The fourth LXC 1.1 bugfix release is now out! This includes all bugfixes committed to master since the release of LXC 1.1.3. As usual, the full announcement and changelog may be found at: https://linuxcontainers.org/lxc/news/ And our tarballs can be downloaded from:

[lxc-devel] [lxc/lxc]

2015-10-06 Thread GitHub
Branch: refs/tags/lxc-1.1.4 Home: https://github.com/lxc/lxc ___ lxc-devel mailing list lxc-devel@lists.linuxcontainers.org http://lists.linuxcontainers.org/listinfo/lxc-devel

[lxc-devel] Passed: lxc/lxc#1282 (lxc-1.1.4 - e9bcaaf)

2015-10-06 Thread Travis CI
Build Update for lxc/lxc - Build: #1282 Status: Passed Duration: 1 minute and 12 seconds Commit: e9bcaaf (lxc-1.1.4) Author: Stéphane Graber Message: change version to 1.1.4 in configure.ac Signed-off-by: Stéphane Graber View the

[lxc-devel] [lxc/lxc] e9bcaa: change version to 1.1.4 in configure.ac

2015-10-06 Thread GitHub
Branch: refs/heads/stable-1.1 Home: https://github.com/lxc/lxc Commit: e9bcaafeaa73d0f8f0ef8a0190cb74abd8f11db0 https://github.com/lxc/lxc/commit/e9bcaafeaa73d0f8f0ef8a0190cb74abd8f11db0 Author: Stéphane Graber Date: 2015-10-06 (Tue, 06 Oct 2015)

Re: [lxc-devel] [PATCH v3 7/7] added the unmount-namespace hook

2015-10-06 Thread Serge Hallyn
Quoting Wolfgang Bumiller (w.bumil...@proxmox.com): > Signed-off-by: Wolfgang Bumiller Hi Wolfgang, Thanks for resending. I'm a very forgetful person. If you could (in the future - don't resend this one) add a changelog showing what's changed, that would make my

[lxc-devel] [PATCH v5] Make overlayfs mounts work directly

2015-10-06 Thread Christian Brauner
When users wanted to mount overlay directories with lxc.mount.entry they had to create upperdirs and workdirs beforehand in order to mount them. To create it for them we add the functions mount_entry_create_overlay_dirs() and mount_entry_create_aufs_dirs() which do this for them. User can now

[lxc-devel] [PATCH v5] Make overlayfs mounts work directly

2015-10-06 Thread Christian Brauner
No changes apart from the ones Serge requested. Adding Acked-by: Serge E. Hallyn with Serge's permission. (see hist comments to [PATCH v4]) Christian Brauner (1): Make overlayfs mounts work directly src/lxc/conf.c | 162

Re: [lxc-devel] [PATCH v4] Make overlayfs mounts work directly

2015-10-06 Thread Serge Hallyn
Quoting Christian Brauner (christianvanbrau...@gmail.com): > When users wanted to mount overlay directories with lxc.mount.entry they had > to > create upperdirs and workdirs beforehand in order to mount them. To create it > for them we add the functions mount_entry_create_overlay_dirs() and >

Re: [lxc-devel] [PATCH v5] Make overlayfs mounts work directly

2015-10-06 Thread Christian Brauner
I now wonder if it wouldn't be smarter to force users to specify relative paths for upper and workdir lxc.mount.entry = /lower merged overlay lowerdir=/lower,upper=upper,workdir=workdir,create=dir and fill in the missing path in mount_entry_create_*_dirs(). Otherwise these mounts won't

Re: [lxc-devel] [PATCH v3] Make overlayfs mounts work directly

2015-10-06 Thread Christian Brauner
Updated version (v4) to follow. On Mon, Oct 05, 2015 at 01:45:53PM +, Serge Hallyn wrote: > Quoting Christian Brauner (christianvanbrau...@gmail.com): > > When users wanted to mount overlay directories with lxc.mount.entry they > > had to > > create upperdirs and workdirs beforehand in order

[lxc-devel] [PATCH v4] Make overlayfs mounts work directly

2015-10-06 Thread Christian Brauner
I now included a check whether rootfs->path is empty in mount_entry_create_overlay_dirs() mount_entry_create_aufs_dirs(). Christian Brauner (1): Make overlayfs mounts work directly src/lxc/conf.c | 156 - 1 file changed, 144

[lxc-devel] [PATCH v4] Make overlayfs mounts work directly

2015-10-06 Thread Christian Brauner
When users wanted to mount overlay directories with lxc.mount.entry they had to create upperdirs and workdirs beforehand in order to mount them. To create it for them we add the functions mount_entry_create_overlay_dirs() and mount_entry_create_aufs_dirs() which do this for them. User can now

[lxc-devel] [PATCH] doc: Add lxc.ephemeral in Japanese lxc.container.conf(5)

2015-10-06 Thread KATOH Yasufumi
Update for commit 4e6eb26 Signed-off-by: KATOH Yasufumi --- doc/ja/lxc.container.conf.sgml.in | 26 ++ 1 file changed, 26 insertions(+) diff --git a/doc/ja/lxc.container.conf.sgml.in b/doc/ja/lxc.container.conf.sgml.in index e07a3df..45e5c31

[lxc-devel] [PATCH v3 0/7] stop-hook with namespace access

2015-10-06 Thread Wolfgang Bumiller
Changes to v2: - patch 5: turned `namespaces` into an array and added Acked-by Serge E. Hallyn - patch 7: various things listed by Serge: * description comment right below the license header * mentioned /dev/cgroup in the mount_should_error query (since it returns false for all

[lxc-devel] [PATCH v3 1/7] start.c:preserve_ns: added pid parameter

2015-10-06 Thread Wolfgang Bumiller
Signed-off-by: Wolfgang Bumiller Acked-by: Serge E. Hallyn --- src/lxc/start.c | 10 ++ 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/lxc/start.c b/src/lxc/start.c index 0601333..1a7d5a3 100644 --- a/src/lxc/start.c

[lxc-devel] [PATCH v3 3/7] added stop-hook entries

2015-10-06 Thread Wolfgang Bumiller
Signed-off-by: Wolfgang Bumiller Acked-by: Serge E. Hallyn --- src/lxc/conf.c| 4 +++- src/lxc/conf.h| 2 +- src/lxc/confile.c | 3 +++ 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/src/lxc/conf.c b/src/lxc/conf.c index

[lxc-devel] [PATCH v3 7/7] added the unmount-namespace hook

2015-10-06 Thread Wolfgang Bumiller
Signed-off-by: Wolfgang Bumiller --- hooks/Makefile.am | 6 ++ hooks/unmount-namespace.c | 213 ++ 2 files changed, 219 insertions(+) create mode 100644 hooks/unmount-namespace.c diff --git a/hooks/Makefile.am

[lxc-devel] [PATCH v3 4/7] run stop hook between STOPPING and STOPPED states

2015-10-06 Thread Wolfgang Bumiller
Signed-off-by: Wolfgang Bumiller Acked-by: Serge E. Hallyn --- src/lxc/start.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/lxc/start.c b/src/lxc/start.c index 87fc32f..a1eb961 100644 --- a/src/lxc/start.c +++ b/src/lxc/start.c @@

[lxc-devel] [PATCH v3 6/7] document the stop hook

2015-10-06 Thread Wolfgang Bumiller
Signed-off-by: Wolfgang Bumiller Acked-by: Serge E. Hallyn --- doc/lxc.container.conf.sgml.in | 27 +-- 1 file changed, 25 insertions(+), 2 deletions(-) diff --git a/doc/lxc.container.conf.sgml.in

[lxc-devel] [PATCH v3 5/7] pass namespace handles to the stop hook

2015-10-06 Thread Wolfgang Bumiller
Signed-off-by: Wolfgang Bumiller Acked-by: Serge E. Hallyn --- src/lxc/start.c | 21 +++-- 1 file changed, 19 insertions(+), 2 deletions(-) diff --git a/src/lxc/start.c b/src/lxc/start.c index a1eb961..d24b586 100644 ---

[lxc-devel] [PATCH v3 2/7] preserve container namespace

2015-10-06 Thread Wolfgang Bumiller
Signed-off-by: Wolfgang Bumiller Acked-by: Serge E. Hallyn --- src/lxc/start.c | 18 ++ src/lxc/start.h | 1 + 2 files changed, 19 insertions(+) diff --git a/src/lxc/start.c b/src/lxc/start.c index 1a7d5a3..87fc32f 100644 ---

[lxc-devel] [PATCH] doc: Add the common and '-s' option in Korean lxc-destroy(1)

2015-10-06 Thread Sungbae Yoo
Update for commit 3635c5e Signed-off-by: Sungbae Yoo diff --git a/doc/ko/lxc-destroy.sgml.in b/doc/ko/lxc-destroy.sgml.in index cb5d0b6..5a9cb36 100644 --- a/doc/ko/lxc-destroy.sgml.in +++ b/doc/ko/lxc-destroy.sgml.in @@ -57,6 +57,7 @@ by Sungbae Yoo lxc-destroy

[lxc-devel] [PATCH] doc: Add the note related mount in Korean lxc.container.conf(5)

2015-10-06 Thread Sungbae Yoo
Update for commit 592fd47 Signed-off-by: Sungbae Yoo diff --git a/doc/ko/lxc.container.conf.sgml.in b/doc/ko/lxc.container.conf.sgml.in index b305680..6d225a8 100644 --- a/doc/ko/lxc.container.conf.sgml.in +++ b/doc/ko/lxc.container.conf.sgml.in @@ -1008,6 +1008,23 @@