aboutsummaryrefslogtreecommitdiff
path: root/src/connection
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2021-07-02 11:05:38 -0700
committerSean Whitton <spwhitton@spwhitton.name>2021-07-06 21:19:39 -0700
commit70f67680de01948847b1124b6583299e38509f1f (patch)
tree4cec6d501777f483b6710b8ef0bd45523f6287e2 /src/connection
parente0672a93ed2e4899dd3ab40e247edac82827e2bc (diff)
downloadconsfigurator-70f67680de01948847b1124b6583299e38509f1f.tar.gz
fix manpage sections for mount(8), umount(8) and findmnt(8)
Signed-off-by: Sean Whitton <spwhitton@spwhitton.name>
Diffstat (limited to 'src/connection')
-rw-r--r--src/connection/chroot.lisp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/connection/chroot.lisp b/src/connection/chroot.lisp
index 31ce5cb..ae2b337 100644
--- a/src/connection/chroot.lisp
+++ b/src/connection/chroot.lisp
@@ -61,7 +61,7 @@ should be the mount point, without the chroot's root prefixed.")
(defmethod initialize-instance :after ((connection chroot-connection) &key)
(when (string= "Linux" (stripln (run "uname")))
(with-slots (into) connection
- ;; Ensure the chroot itself is a mountpoint so that findmnt(1) works
+ ;; Ensure the chroot itself is a mountpoint so that findmnt(8) works
;; correctly within the chroot.
(unless (zerop (mrun :for-exit "mountpoint" "-q" into))
(chroot-mount connection "--bind" into "/"))