X-Original-To: alpine-devel@lists.alpinelinux.org Received: from eju.eju.no (eju.no [139.162.216.22]) by lists.alpinelinux.org (Postfix) with ESMTP id 0B124F8161A for ; Mon, 6 May 2019 21:48:08 +0000 (UTC) Received: by eju.eju.no (Postfix, from userid 1000) id 6DE9A177F01; Mon, 6 May 2019 21:48:08 +0000 (UTC) From: Eivind Uggedal To: alpine-devel@lists.alpinelinux.org Cc: Eivind Uggedal Subject: [alpine-devel] [PATCH abuild 1/4] buildlab: fix chroot umounting Date: Mon, 6 May 2019 21:47:44 +0000 Message-Id: <20190506214747.26486-2-eu@eju.no> X-Mailer: git-send-email 2.20.1 In-Reply-To: <20190506214747.26486-1-eu@eju.no> References: <20190506214747.26486-1-eu@eju.no> X-Mailinglist: alpine-devel Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Before this change running buildlab would umount your system's proper non bind mounted /dev, /proc, and /sys! --- buildlab.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildlab.in b/buildlab.in index b5129ff17270..e0d64d665380 100644 --- a/buildlab.in +++ b/buildlab.in @@ -100,7 +100,7 @@ do_chroot_action() { chroot "$path" /bin/sh /.chroot-action.sh rm "$path"/.chroot-action.sh - do_chroot_close + do_chroot_close "$path" } update_chroot() { -- 2.20.1 --- Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org Help: alpine-devel+help@lists.alpinelinux.org ---