summaryrefslogtreecommitdiff
path: root/src/Propellor/Property.hs
diff options
context:
space:
mode:
authorJoey Hess <joey@kitenet.net>2014-05-29 14:29:34 -0400
committerJoey Hess <joey@kitenet.net>2014-05-29 14:29:34 -0400
commit2b77ee8e106abd5fbcaf8d5cd4719057a8d28a67 (patch)
treec1a3620607a70a8912ade76a024ab47fb11bbba2 /src/Propellor/Property.hs
parented6457f7fb381e47426a023ef4e0c474bdab4b6b (diff)
parentead04c65e06ed47a175624922582a33082585f6d (diff)
Merge branch 'joeyconfig'
Diffstat (limited to 'src/Propellor/Property.hs')
-rw-r--r--src/Propellor/Property.hs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/Propellor/Property.hs b/src/Propellor/Property.hs
index 24494654..0728932e 100644
--- a/src/Propellor/Property.hs
+++ b/src/Propellor/Property.hs
@@ -103,6 +103,9 @@ trivial p = adjustProperty p $ \satisfy -> do
then return NoChange
else return r
+doNothing :: Property
+doNothing = property "noop property" noChange
+
-- | Makes a property that is satisfied differently depending on the host's
-- operating system.
--