Re: [lxc-devel] [PATCH 0/3] lxc-debian: some improvements

2016-06-21 Thread Laurent Vivier
Le 21/06/2016 à 18:22, Serge E. Hallyn a écrit : > Quoting Laurent Vivier (laur...@vivier.eu): >> >> >> Le 17/06/2016 à 03:19, Laurent Vivier a écrit : >>> The first patch defines a default password for root. >>> The two following ones are copied from lxc

Re: [lxc-devel] [PATCH 0/3] lxc-debian: some improvements

2016-06-21 Thread Laurent Vivier
Le 17/06/2016 à 03:19, Laurent Vivier a écrit : > The first patch defines a default password for root. > The two following ones are copied from lxc-ubuntu to > allow to flush cache and to support btrfs snapshot > of the cache. > > Laurent Vivier (3): > lxc-debian: defin

Re: [lxc-devel] [PATCH 1/3] lxc-debian: define a password for root

2016-06-20 Thread Laurent Vivier
allows to set it afterwards. Thanks, Laurent > by default there's little reason to support setting a root ssh key, > but a template creation flag to specify a root pwd sha256sum seems > like the simplest solution.On 6/18/16 8:13 Laurent Vivier wrote: > > > Le 17/06/20

Re: [lxc-devel] [PATCH 1/3] lxc-debian: define a password for root

2016-06-18 Thread Laurent Vivier
Le 18/06/2016 à 15:13, Laurent Vivier a écrit : > > > Le 17/06/2016 à 16:52, serge at hallyn.com (Serge E. Hallyn) a écrit : >> Quoting Laurent Vivier (laurent at vivier.eu): >>> Signed-off-by: Laurent Vivier >> >> Sorry but isn't this a regres

Re: [lxc-devel] [PATCH 1/3] lxc-debian: define a password for root

2016-06-18 Thread Laurent Vivier
Le 17/06/2016 à 16:52, serge at hallyn.com (Serge E. Hallyn) a écrit : > Quoting Laurent Vivier (laurent at vivier.eu): >> Signed-off-by: Laurent Vivier > > Sorry but isn't this a regression? How about making this subject to a > --default-password argument or something?

[lxc-devel] [PATCH 0/3] lxc-debian: some improvements

2016-06-16 Thread Laurent Vivier
The first patch defines a default password for root. The two following ones are copied from lxc-ubuntu to allow to flush cache and to support btrfs snapshot of the cache. Laurent Vivier (3): lxc-debian: define a password for root lxc-debian: add --flush-cache lxc-debian: add btrfs support

[lxc-devel] [PATCH 3/3] lxc-debian: add btrfs support

2016-06-16 Thread Laurent Vivier
copied from lxc-ubuntu.in Signed-off-by: Laurent Vivier --- templates/lxc-debian.in | 55 - 1 file changed, 50 insertions(+), 5 deletions(-) diff --git a/templates/lxc-debian.in b/templates/lxc-debian.in index 6c4eb81..f620fb8 100644 --- a

[lxc-devel] [PATCH 1/3] lxc-debian: define a password for root

2016-06-16 Thread Laurent Vivier
Signed-off-by: Laurent Vivier --- templates/lxc-debian.in | 4 1 file changed, 4 insertions(+) diff --git a/templates/lxc-debian.in b/templates/lxc-debian.in index 56953b6..5dc4e0b 100644 --- a/templates/lxc-debian.in +++ b/templates/lxc-debian.in @@ -163,6 +163,10 @@ EOF echo

[lxc-devel] [PATCH 2/3] lxc-debian: add --flush-cache

2016-06-16 Thread Laurent Vivier
copied from lxc-ubuntu.in Signed-off-by: Laurent Vivier --- templates/lxc-debian.in | 14 -- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/templates/lxc-debian.in b/templates/lxc-debian.in index 5dc4e0b..6c4eb81 100644 --- a/templates/lxc-debian.in +++ b/templates

[lxc-devel] [PATCH] lxc-debian: allow to specify a binfmt interpreter

2016-06-13 Thread Laurent Vivier
$ sudo lxc-create -n virtmips-stretch -t debian -- \ --arch=mips \ --interpreter-path=./mips-linux-user/qemu-mips \ --mirror=http://ftp.debian.org/debian \ --release=stretch Signed-off-by: Laurent Vivier --- templates

[lxc-devel] [PATCH] lxc-fedora: manage secondary architectures

2015-04-11 Thread Laurent Vivier
architectures are only ppc64 and s390x, the secondary architectures for Fedora 20 (the base of initial bootstrap). Signed-off-by: Laurent Vivier --- templates/lxc-fedora.in | 15 ++- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/templates/lxc-fedora.in b/templates/lxc-fedora.in

Re: [lxc-devel] [PATCH] Add lxc-cross-debian to create debian containers for non native architectures.

2013-12-26 Thread Laurent Vivier
Le 26/12/2013 00:12, Laurent Vivier a écrit : Le 25/12/2013 21:47, Stéphane Graber a écrit : On Wed, Dec 25, 2013 at 09:38:57PM +0100, Laurent Vivier wrote: These containers will use the binfmt kernel module and an interpreter to execute binaries inside the container. To use it : 1- configure

Re: [lxc-devel] [PATCH] Add lxc-cross-debian to create debian containers for non native architectures.

2013-12-25 Thread Laurent Vivier
Le 25/12/2013 21:47, Stéphane Graber a écrit : On Wed, Dec 25, 2013 at 09:38:57PM +0100, Laurent Vivier wrote: These containers will use the binfmt kernel module and an interpreter to execute binaries inside the container. To use it : 1- configure correctly binfmt on your system to load the

[lxc-devel] [PATCH] Add lxc-cross-debian to create debian containers for non native architectures.

2013-12-25 Thread Laurent Vivier
the work : git clone g...@gitorious.org:qemu-m68k/qemu-m68k.git cd qemu-m68k scripts/debian-create-lxc.sh m68k You can change "m68k", but m68k is the one really tested... [TIPS: want to create a raspberry-pi container ? scripts/debian-create-lxc.sh raspberrypi ] Signed-off-b