X-Original-To: alpine-aports@mail.alpinelinux.org Delivered-To: alpine-aports@mail.alpinelinux.org Received: from mail.alpinelinux.org (dallas-a1.alpinelinux.org [127.0.0.1]) by mail.alpinelinux.org (Postfix) with ESMTP id 52E9FDC0802 for ; Sat, 28 Nov 2015 20:33:58 +0000 (UTC) Received: from apollo.thewebhostserver.com (unknown [46.28.50.181]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id 0F089DC009C for ; Sat, 28 Nov 2015 20:33:56 +0000 (UTC) Received: from [81.4.121.188] (port=42860 helo=localhost.localdomain) by apollo.thewebhostserver.com with esmtpsa (TLSv1.2:AES128-SHA256:128) (Exim 4.86) (envelope-from ) id 1a2mBt-0035hr-Re for alpine-aports@lists.alpinelinux.org; Sat, 28 Nov 2015 20:33:53 +0000 From: Stuart Cardall To: alpine-aports@lists.alpinelinux.org Subject: [alpine-aports] [PATCH v2] main/lxc: add GNU tar depends for unprivileged containers Date: Sat, 28 Nov 2015 20:33:57 +0000 Message-Id: <1448742837-740-1-git-send-email-developer@it-offshore.co.uk> X-Mailer: git-send-email 2.6.3 X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - apollo.thewebhostserver.com X-AntiAbuse: Original Domain - lists.alpinelinux.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - it-offshore.co.uk X-Get-Message-Sender-Via: apollo.thewebhostserver.com: authenticated_id: developer@it-offshore.co.uk X-Source: X-Source-Args: X-Source-Dir: X-Virus-Scanned: ClamAV using ClamSMTP X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: The lxc download template for unprivileged containers requires 'tar --anchored' which is not possible with Busybox tar. Adds GNU tar to the depends of lxc-templates. --- Changes v1 -> v2: - depends added to lxc-templates not lxc main/lxc/APKBUILD | 1 + 1 file changed, 1 insertion(+) diff --git a/main/lxc/APKBUILD b/main/lxc/APKBUILD index 32bdb48..286e03f 100644 --- a/main/lxc/APKBUILD +++ b/main/lxc/APKBUILD @@ -78,6 +78,7 @@ _lua52() { templates() { pkgdesc="Templates for LXC" + depends="tar" arch="noarch" mkdir -p "$subpkgdir"/usr/share/lxc mv "$pkgdir"/usr/share/lxc/templates "$subpkgdir"/usr/share/lxc/ -- 2.6.3 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---