summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoey Hess2015-09-02 19:33:54 -0700
committerJoey Hess2015-09-02 19:33:54 -0700
commit00ce4591aacfc2c16d8a3204ebd5dd0fc52d5825 (patch)
tree6a659308170c1a217b97d1b98bf72af4bd388917
parent72c0c1b6608bfa318437bb9219f777c255b9831a (diff)
improve exports
-rw-r--r--src/Propellor/Property/DiskImage.hs15
1 files changed, 13 insertions, 2 deletions
diff --git a/src/Propellor/Property/DiskImage.hs b/src/Propellor/Property/DiskImage.hs
index a406428a..8ee77376 100644
--- a/src/Propellor/Property/DiskImage.hs
+++ b/src/Propellor/Property/DiskImage.hs
@@ -12,11 +12,22 @@ module Propellor.Property.DiskImage (
imageBuiltFrom,
imageExists,
-- * Partition specifiction
- module Propellor.Property.Parted,
MountPoint,
PartSpec,
mountedAt,
swapPartition,
+ TableType(..),
+ PartTable(..),
+ Partition(..),
+ mkPartition,
+ Fs(..),
+ PartSize(..),
+ ByteSize,
+ toPartSize,
+ fromPartSize,
+ reducePartSize,
+ PartType(..),
+ PartFlag(..),
-- * Partition sizing
SizePartTable,
fitChrootSize,
@@ -45,7 +56,7 @@ import System.Posix.Files
type DiskImage = FilePath
--- | Creates a bootable disk image in the specified file.
+-- | Creates a bootable disk image.
--
-- First the specified Chroot is set up, and its properties are satisfied.
--