aboutsummaryrefslogtreecommitdiff
path: root/src/property/installer.lisp
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2021-08-28 15:54:18 -0700
committerSean Whitton <spwhitton@spwhitton.name>2021-08-31 15:55:26 -0700
commit1f12dfda4aeb6d08af454d60caa5985b2bd5b1ba (patch)
tree74ed16275286479a2c9aee411138b41d1d065746 /src/property/installer.lisp
parenta2f6906904352b1ba6309893f9969e22597009d2 (diff)
downloadconsfigurator-1f12dfda4aeb6d08af454d60caa5985b2bd5b1ba.tar.gz
cache XDG_CACHE_HOME as a connattr
This should provide a performance improvement. Signed-off-by: Sean Whitton <spwhitton@spwhitton.name>
Diffstat (limited to 'src/property/installer.lisp')
-rw-r--r--src/property/installer.lisp11
1 files changed, 5 insertions, 6 deletions
diff --git a/src/property/installer.lisp b/src/property/installer.lisp
index 2830703..38b5ce9 100644
--- a/src/property/installer.lisp
+++ b/src/property/installer.lisp
@@ -265,16 +265,15 @@ using a combinator like ON-CHANGE, or applied manually with DEPLOY-THESE."
;; OS's actual XDG_CACHE_HOME. Move cache & update environment.
(let ((source
(chroot-pathname
- (merge-pathnames "consfigurator/"
- (ensure-directory-pathname
- (or (getenv "XDG_CACHE_HOME")
- (strcat (getenv "HOME") "/.cache/"))))
+ (merge-pathnames
+ "consfigurator/" (get-connattr :XDG-CACHE-HOME))
old-os)))
(when (directory-exists-p source)
(rename-file source (ensure-directories-exist
#P"/root/.cache/consfigurator/"))))
- (setf (get-connattr :remote-user) "root")
- (setf (get-connattr :remote-home) "/root")
+ (setf (get-connattr :remote-user) "root"
+ (get-connattr :remote-home) "/root"
+ (get-connattr :XDG-CACHE-HOME) #P"/root/.cache/")
(posix-login-environment "root" "/root")
;; Remount (mainly virtual) filesystems that other properties we will