aboutsummaryrefslogtreecommitdiff
path: root/src/property/chroot.lisp
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2021-03-21 16:50:54 -0700
committerSean Whitton <spwhitton@spwhitton.name>2021-03-21 16:50:54 -0700
commit168a2039a88cd0698a8cc27f92f9ec6109d97f83 (patch)
treed4b191c92c53ec962555af5d91af56fa7ab10792 /src/property/chroot.lisp
parent5c142cf6a09a4851b448aa7eb67cc421e35ee609 (diff)
downloadconsfigurator-168a2039a88cd0698a8cc27f92f9ec6109d97f83.tar.gz
add descriptions to some chroot properties
Signed-off-by: Sean Whitton <spwhitton@spwhitton.name>
Diffstat (limited to 'src/property/chroot.lisp')
-rw-r--r--src/property/chroot.lisp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/property/chroot.lisp b/src/property/chroot.lisp
index 5595b49..692b2e2 100644
--- a/src/property/chroot.lisp
+++ b/src/property/chroot.lisp
@@ -43,6 +43,7 @@
(apply #'run args))))
(defpropspec %os-bootstrapper-installed :posix (host)
+ (:desc (declare (ignore host)) "OS bootstrapper installed")
`(os:host-typecase ,host
(debian
(os:typecase
@@ -52,6 +53,7 @@
"Bootstrap OS into ROOT, e.g. with debootstrap(1)."
;; evaluate HOST once; can't use ONCE-ONLY because gensyms not serialisable
;; for sending to remote Lisp images
+ (:desc (declare (ignore options root host)) "OS bootstrapped")
(let ((host host))
`(os:host-typecase ,host
(debian (%debootstrapped ,root ,host ,@options)))))