From 192dbe6fdcd25be04d056cfb8657efe4438796f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9C=89=E5=BC=A0=E7=BA=B8?= Date: Tue, 30 Jun 2015 16:23:11 +0800 Subject: [PATCH] debootstrap failed when $GREP_OPTIONS is set debootstrap failed when $GREP_OPTIONS is set, so we need to unset it in the template Signed-off-by: --- templates/lxc-debian.in | 1 + 1 file changed, 1 insertion(+) diff --git a/templates/lxc-debian.in b/templates/lxc-debian.in index 558a3495b..bdd14b450 100644 --- a/templates/lxc-debian.in +++ b/templates/lxc-debian.in @@ -32,6 +32,7 @@ done # Make sure the usual locations are in PATH export PATH=$PATH:/usr/sbin:/usr/bin:/sbin:/bin +export GREP_OPTIONS="" MIRROR=${MIRROR:-http://http.debian.net/debian} SECURITY_MIRROR=${SECURITY_MIRROR:-http://security.debian.org/}