[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: /var/tmp
From: |
Ludovic Courtès |
Subject: |
Re: /var/tmp |
Date: |
Mon, 30 Mar 2015 21:25:03 +0200 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/24.4 (gnu/linux) |
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.
Ludo’.
- /var/tmp, Mark H Weaver, 2015/03/30
- Re: /var/tmp,
Ludovic Courtès <=