summaryrefslogtreecommitdiff
path: root/src/Propellor/Property/Apache.hs
diff options
context:
space:
mode:
authorJoey Hess2014-07-22 16:28:04 -0400
committerJoey Hess2014-07-22 16:28:04 -0400
commitdc1a8db06455a287169f765b4e5c115200386359 (patch)
tree4cd262185726827f3daf9d02bea08a87116a8862 /src/Propellor/Property/Apache.hs
parentfcabeb677bc075088a4da464960b9f5b705bfa51 (diff)
propellor spin
Diffstat (limited to 'src/Propellor/Property/Apache.hs')
-rw-r--r--src/Propellor/Property/Apache.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Propellor/Property/Apache.hs b/src/Propellor/Property/Apache.hs
index b1fa9d9a..e2ee0346 100644
--- a/src/Propellor/Property/Apache.hs
+++ b/src/Propellor/Property/Apache.hs
@@ -10,7 +10,7 @@ type ConfigFile = [String]
siteEnabled :: HostName -> ConfigFile -> RevertableProperty
siteEnabled hn cf = RevertableProperty enable disable
where
- enable = trivial $ cmdProperty "a2ensite" ["--quiet", hn]
+ enable = cmdProperty "a2ensite" ["--quiet", hn]
`describe` ("apache site enabled " ++ hn)
`requires` siteAvailable hn cf
`requires` installed