From mboxrd@z Thu Jan 1 00:00:00 1970 From: ludo@gnu.org (Ludovic =?utf-8?Q?Court=C3=A8s?=) Subject: Re: /var/tmp Date: Mon, 30 Mar 2015 21:25:03 +0200 Message-ID: <871tk68f00.fsf@gnu.org> References: <87384mrc4q.fsf@netris.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:49475) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YcfJ7-0008JY-T7 for guix-devel@gnu.org; Mon, 30 Mar 2015 15:25:10 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YcfJ4-00027m-HG for guix-devel@gnu.org; Mon, 30 Mar 2015 15:25:09 -0400 Received: from fencepost.gnu.org ([2001:4830:134:3::e]:40026) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YcfJ4-00027U-EK for guix-devel@gnu.org; Mon, 30 Mar 2015 15:25:06 -0400 In-Reply-To: <87384mrc4q.fsf@netris.org> (Mark H. Weaver's message of "Mon, 30 Mar 2015 06:52:05 -0400") List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: Mark H Weaver Cc: guix-devel@gnu.org --=-=-= Content-Type: text/plain Mark H Weaver skribis: > Should we add /var/tmp on GuixSD? Surely. How about this patch? --=-=-= Content-Type: text/x-patch Content-Disposition: inline diff --git a/gnu/build/install.scm b/gnu/build/install.scm index aa901f6..e624cdd 100644 --- a/gnu/build/install.scm +++ b/gnu/build/install.scm @@ -118,6 +118,7 @@ STORE." (directory "/bin") (directory "/tmp" 0 0 #o1777) ; sticky bit + (directory "/var/tmp" 0 0 #o1777) (directory "/root" 0 0) ; an exception (directory "/home" 0 0))) --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable This will only take effect on new installs. On existing installations, people will have to create it by hand. Ludo=E2=80=99. --=-=-=--