From ef53625fe1b7d29fc0676564ddc28c96008384ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Graber?= Date: Fri, 21 Mar 2014 10:20:26 -0400 Subject: [PATCH] lxc-debian: Don't eat the argument after -c MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Reported-by: Robie Basak Signed-off-by: Stéphane Graber Acked-by: Serge E. Hallyn --- templates/lxc-debian.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/lxc-debian.in b/templates/lxc-debian.in index 7ad8e3cb2..aadfe25f5 100644 --- a/templates/lxc-debian.in +++ b/templates/lxc-debian.in @@ -361,7 +361,7 @@ do -a|--arch) arch=$2; shift 2;; -r|--release) release=$2; shift 2;; -n|--name) name=$2; shift 2;; - -c|--clean) clean=$2; shift 2;; + -c|--clean) clean=$2; shift 1;; --) shift 1; break ;; *) break ;; esac