summaryrefslogtreecommitdiff
path: root/src/Propellor/Types.hs
diff options
context:
space:
mode:
authorJoey Hess2016-03-24 17:25:58 -0400
committerJoey Hess2016-03-24 17:28:20 -0400
commit83cd812ab5ac787769b34f59d1763f3c8648f06a (patch)
tree23b056fbe8616d34b623b58181e56225fcb939d6 /src/Propellor/Types.hs
parent3d6a0d8663d32344a9f0761a144bfcacf9667378 (diff)
convert ensureProperty
Moved to its own module to keep everything related in one place.
Diffstat (limited to 'src/Propellor/Types.hs')
-rw-r--r--src/Propellor/Types.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Propellor/Types.hs b/src/Propellor/Types.hs
index 866e8090..d30a39f3 100644
--- a/src/Propellor/Types.hs
+++ b/src/Propellor/Types.hs
@@ -13,9 +13,9 @@
module Propellor.Types
( Host(..)
, Property(..)
+ , property
, Info
, Desc
- , property
, MetaType(..)
, OS(..)
, UnixLike
@@ -172,7 +172,7 @@ ignoreInfo =
-- | Gets the action that can be run to satisfy a Property.
-- You should never run this action directly. Use
--- 'Propellor.Engine.ensureProperty` instead.
+-- 'Propellor.EnsureProperty.ensureProperty` instead.
propertySatisfy :: Property metatypes -> Propellor Result
propertySatisfy (Property _ _ a _ _) = a