From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id C3193139737 for ; Tue, 11 Aug 2015 18:38:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9523A14234; Tue, 11 Aug 2015 18:38:05 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BE0A114231 for ; Tue, 11 Aug 2015 18:38:04 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id CB048340C4B for ; Tue, 11 Aug 2015 18:37:58 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F083B165 for ; Tue, 11 Aug 2015 18:37:53 +0000 (UTC) From: "Richard Farina" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Richard Farina" Message-ID: <1439317276.fb8b21b62d5aa0ce2a378610b1b15dabb1b002a2.zerochaos@gentoo> Subject: [gentoo-commits] proj/genkernel:master commit in: defaults/ X-VCS-Repository: proj/genkernel X-VCS-Files: defaults/linuxrc X-VCS-Directories: defaults/ X-VCS-Committer: zerochaos X-VCS-Committer-Name: Richard Farina X-VCS-Revision: fb8b21b62d5aa0ce2a378610b1b15dabb1b002a2 X-VCS-Branch: master Date: Tue, 11 Aug 2015 18:37:53 +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-Archives-Salt: 6bd7ea0f-07b7-4c8e-9a9b-45fb784f9e7f X-Archives-Hash: e7af466dfddf04b17d666469ff7e93da commit: fb8b21b62d5aa0ce2a378610b1b15dabb1b002a2 Author: Rick Farina (Zero_Chaos) gentoo org> AuthorDate: Tue Sep 23 00:19:43 2014 +0000 Commit: Richard Farina gentoo org> CommitDate: Tue Aug 11 18:21:16 2015 +0000 URL: https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=fb8b21b6 /usr/portage/distfiles shouldn't be tmpfs It really doesn't make sense for /usr/portage/distfiles to be tmpfs, plus, if a user is using aufs and trying to save changes we don't want to lose these files. Only /tmp and /var/tmp should be tmpfs. defaults/linuxrc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/defaults/linuxrc b/defaults/linuxrc index 951f5e1..19b9878 100644 --- a/defaults/linuxrc +++ b/defaults/linuxrc @@ -770,7 +770,7 @@ then # Fstab changes for aufs if ! grep -q '^aufs' "$CHROOT/etc/fstab" 2>/dev/null; then - for dir in /var/tmp /tmp /usr/portage/distfiles; do + for dir in /var/tmp /tmp; do [ ! -d $CHROOT$dir ] && mkdir -p "$CHROOT$dir" done @@ -782,7 +782,6 @@ then aufs / aufs defaults 0 0 vartmp /var/tmp tmpfs defaults 0 0 tmp /tmp tmpfs defaults 0 0 -distfiles /usr/portage/distfiles tmpfs defaults 0 0 FSTAB fi