aboutsummaryrefslogtreecommitdiff
path: root/src/property/disk.lisp
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2023-03-01 13:59:12 -0700
committerSean Whitton <spwhitton@spwhitton.name>2023-03-01 14:21:37 -0700
commit6808af3becc9986d5dafdcc4412c13a3961a7e64 (patch)
tree85545c84b73d9a0d310b7c73331045a356185046 /src/property/disk.lisp
parentcc1835ff316910b8dd641dec091b41e8b5c198cd (diff)
downloadconsfigurator-6808af3becc9986d5dafdcc4412c13a3961a7e64.tar.gz
doc/: start generating API documentation from docstrings
Signed-off-by: Sean Whitton <spwhitton@spwhitton.name>
Diffstat (limited to 'src/property/disk.lisp')
-rw-r--r--src/property/disk.lisp42
1 files changed, 21 insertions, 21 deletions
diff --git a/src/property/disk.lisp b/src/property/disk.lisp
index 4c650f9..f7b7b3d 100644
--- a/src/property/disk.lisp
+++ b/src/property/disk.lisp
@@ -998,7 +998,7 @@ filesystems will be incrementally updated when other properties change."
(options host device-file &key chroot)
"Install HOST to the DISK:PHYSICAL-DISK accessible at DEVICE-FILE.
**THIS PROPERTY UNCONDITIONALLY FORMATS DISKS, POTENTIALLY DESTROYING DATA,
- EACH TIME IT IS APPLIED.**
+EACH TIME IT IS APPLIED.**
Do not apply in DEFHOST. Apply with DEPLOY-THESE/HOSTDEPLOY-THESE.
@@ -1046,7 +1046,7 @@ the host's actual physical disk upon first boot."
(defpropspec volumes-installed-for :lisp (options host &key chroot leave-open)
"Install HOST to its volumes, as specified using DISK:HAS-VOLUMES.
**THIS PROPERTY UNCONDITIONALLY FORMATS DISKS, POTENTIALLY DESTROYING DATA,
- EACH TIME IT IS APPLIED.**
+EACH TIME IT IS APPLIED.**
Do not apply in DEFHOST. Apply with DEPLOY-THESE/HOSTDEPLOY-THESE.
@@ -1233,28 +1233,28 @@ specifications. This becomes the VOLUME-CONTENTS of the VOLUME.
The following keys in INITARGS are handled specially:
- - :VOLUME-SIZE -- may be a string like \"100M\", \"2G\", \"1T\" which will
- be converted into a whole number of mebibytes. \"M\", \"G\", and \"T\"
- are currently supported.
+ - :VOLUME-SIZE -- may be a string like \"100M\", \"2G\", \"1T\" which will
+ be converted into a whole number of mebibytes. \"M\", \"G\", and \"T\"
+ are currently supported.
Example usage:
- (volumes
- (physical-disk
- (partitioned-volume
- ((partition
- :partition-typecode #xef00
- (fat32-filesystem
- :volume-size \"512M\"
- :mount-point #P\"/boot/efi\"))
- (partition
- (luks-container
- (lvm-physical-volume
- :volume-group \"vg_laptop\"))))))
- (lvm-logical-volume
- :volume-group \"vg_laptop\"
- :volume-label \"lv_laptop_root\"
- (ext4-filesystem :mount-point #P\"/\")))"
+ (volumes
+ (physical-disk
+ (partitioned-volume
+ ((partition
+ :partition-typecode #xef00
+ (fat32-filesystem
+ :volume-size \"512M\"
+ :mount-point #P\"/boot/efi\"))
+ (partition
+ (luks-container
+ (lvm-physical-volume
+ :volume-group \"vg_laptop\"))))))
+ (lvm-logical-volume
+ :volume-group \"vg_laptop\"
+ :volume-label \"lv_laptop_root\"
+ (ext4-filesystem :mount-point #P\"/\")))"
(labels
((parse (spec)
(unless (listp spec)