Package: lxc Severity: minor Tags: patch Hi,
please accept the following patch to correct the include argument when calling debootstrap.
Regards, Daniel -- Address: Daniel Baumann, Burgunderstrasse 3, CH-4562 Biberist Email: [email protected] Internet: http://people.progress-technologies.net/~daniel.baumann/
>From ccd91f477c3822d6508cb18d2b3191194624fb0d Mon Sep 17 00:00:00 2001 From: Daniel Baumann <[email protected]> Date: Wed, 15 Dec 2010 18:37:23 +0100 Subject: [PATCH] Correcting include argument when calling debootstrap. --- templates/lxc-debian.in | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/templates/lxc-debian.in b/templates/lxc-debian.in index d597321..0b7d711 100644 --- a/templates/lxc-debian.in +++ b/templates/lxc-debian.in @@ -121,7 +121,7 @@ openssh-server # download a mini debian into a cache echo "Downloading debian minimal ..." debootstrap --verbose --variant=minbase --arch=$arch \ - --include $packages \ + --include=$packages \ "$SUITE" "$cache/partial-$SUITE-$arch" $MIRROR if [ $? -ne 0 ]; then echo "Failed to download the rootfs, aborting." -- 1.7.2.3

