[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: /var/tmp
From: |
Ludovic Courtès |
Subject: |
Re: /var/tmp |
Date: |
Tue, 31 Mar 2015 14:01:58 +0200 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/24.4 (gnu/linux) |
Mark H Weaver <address@hidden> skribis:
> address@hidden (Ludovic Courtès) writes:
>
>> Mark H Weaver <address@hidden> skribis:
>>
>>> Should we add /var/tmp on GuixSD?
>>
>> Surely. How about this patch?
>>
>> 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)))
>>
>> This will only take effect on new installs. On existing installations,
>> people will have to create it by hand.
>
> Looks good to me!
Done in f73b8e3, thanks!
Ludo’.