summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoey Hess2015-09-03 10:36:01 -0700
committerJoey Hess2015-09-03 10:36:01 -0700
commit9679e44fe7392f227c6e7245ae29c1e5666ac20c (patch)
treeaae8d715146c38219a40bf228008cd069b2243dd
parent607d681845bb160f4a4940a11090cd1a2640fa81 (diff)
improve format
-rw-r--r--src/Propellor/Property/DiskImage.hs6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/Propellor/Property/DiskImage.hs b/src/Propellor/Property/DiskImage.hs
index 5a41edd0..bb8b4b2a 100644
--- a/src/Propellor/Property/DiskImage.hs
+++ b/src/Propellor/Property/DiskImage.hs
@@ -64,8 +64,10 @@ type DiskImage = FilePath
-- > & Apt.installed ["linux-image-amd64"]
-- > & ...
-- > in imageBuilt "/srv/images/foo.img" chroot MSDOS
--- > [ partition EXT2 `mountedAt` "/boot" `setFlag` BootFlag
--- > , partition EXT4 `mountedAt` "/" `addFreeSpace` MegaBytes 100
+-- > [ partition EXT2 `mountedAt` "/boot"
+-- > `setFlag` BootFlag
+-- > , partition EXT4 `mountedAt` "/"
+-- > `addFreeSpace` MegaBytes 100
-- > , swapPartition (MegaBytes 256)
-- > ] (grubBooted PC)
imageBuilt :: DiskImage -> (FilePath -> Chroot) -> TableType -> [PartSpec] -> Finalization -> RevertableProperty