From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 509C7138350 for ; Sun, 23 Feb 2020 19:48:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8E74FE0864; Sun, 23 Feb 2020 19:48:44 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 6F96CE0864 for ; Sun, 23 Feb 2020 19:48:44 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7401434EF9F for ; Sun, 23 Feb 2020 19:48:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 18E4310B for ; Sun, 23 Feb 2020 19:48:42 +0000 (UTC) From: "Alexys Jacob" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alexys Jacob" Message-ID: <1582487287.429db90efc8c91b357b8fdcc7c131d19ecc635b9.ultrabug@gentoo> Subject: [gentoo-commits] proj/docker-images:master commit in: / X-VCS-Repository: proj/docker-images X-VCS-Files: stage3.Dockerfile X-VCS-Directories: / X-VCS-Committer: ultrabug X-VCS-Committer-Name: Alexys Jacob X-VCS-Revision: 429db90efc8c91b357b8fdcc7c131d19ecc635b9 X-VCS-Branch: master Date: Sun, 23 Feb 2020 19:48:42 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 4e95d828-95c3-41dd-8b09-844dd3ee7421 X-Archives-Hash: b078366475a867641be52aade77fdd0c commit: 429db90efc8c91b357b8fdcc7c131d19ecc635b9 Author: Lucian Poston pm me> AuthorDate: Sat Feb 15 23:42:13 2020 +0000 Commit: Alexys Jacob gentoo org> CommitDate: Sun Feb 23 19:48:07 2020 +0000 URL: https://gitweb.gentoo.org/proj/docker-images.git/commit/?id=429db90e Fix extended attributes Closes: https://github.com/gentoo/gentoo-docker-images/pull/77 Signed-off-by: Alexys Jacob gentoo.org> stage3.Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stage3.Dockerfile b/stage3.Dockerfile index e42d602..925e305 100644 --- a/stage3.Dockerfile +++ b/stage3.Dockerfile @@ -27,7 +27,7 @@ RUN echo "Building Gentoo Container image for ${ARCH} ${SUFFIX} fetching from ${ && gpg --keyserver hkps://keys.gentoo.org --recv-keys ${SIGNING_KEY} \ && gpg --verify "${STAGE3}.DIGESTS.asc" \ && awk '/# SHA512 HASH/{getline; print}' ${STAGE3}.DIGESTS.asc | sha512sum -c \ - && tar xpf "${STAGE3}" --xattrs --numeric-owner \ + && tar xpf "${STAGE3}" --xattrs-include='*.*' --numeric-owner \ && ( sed -i -e 's/#rc_sys=""/rc_sys="docker"/g' etc/rc.conf 2>/dev/null || true ) \ && echo 'UTC' > etc/timezone \ && rm ${STAGE3}.DIGESTS.asc ${STAGE3}.CONTENTS ${STAGE3}