aboutsummaryrefslogtreecommitdiff
path: root/src/connection
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2022-04-16 15:35:55 -0700
committerSean Whitton <spwhitton@spwhitton.name>2022-04-16 15:35:55 -0700
commit953b38327019b070f27e247f9116d0c51f8d9bac (patch)
treeef0e4a9a5ed58c085f7537c18b490c7194ff10f2 /src/connection
parente2a3387cf777c5b190d70475e98ada83b9abbc4a (diff)
downloadconsfigurator-953b38327019b070f27e247f9116d0c51f8d9bac.tar.gz
convert *LINUX-{BASIC,EFIVARS}-VFS* -> +LINUX-{BASIC,EFIVARS}-VFS+
Signed-off-by: Sean Whitton <spwhitton@spwhitton.name>
Diffstat (limited to 'src/connection')
-rw-r--r--src/connection/chroot.lisp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/connection/chroot.lisp b/src/connection/chroot.lisp
index 80c79cb..45e7a6e 100644
--- a/src/connection/chroot.lisp
+++ b/src/connection/chroot.lisp
@@ -61,11 +61,11 @@ should be the mount point, without the chroot's root prefixed.")
(chroot-mount connection "--bind" into "/"))
;; Now set up the usual bind mounts. Help here from arch-chroot(8).
(mount:assert-devtmpfs-udev-/dev)
- (dolist (mount mount:*linux-basic-vfs*)
+ (dolist (mount mount:+linux-basic-vfs+)
(apply #'chroot-mount connection mount))
(chroot-mount connection "--bind" "/run" "/run")
(when (remote-exists-p "/sys/firmware/efi/efivars")
- (apply #'chroot-mount connection mount:*linux-efivars-vfs*)))))
+ (apply #'chroot-mount connection mount:+linux-efivars-vfs+)))))
(defmethod propagate-connattr
((type (eql :opened-volumes)) connattr (connection chroot-connection))