summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/Propellor/Property/Systemd.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Propellor/Property/Systemd.hs b/src/Propellor/Property/Systemd.hs
index d91b441b..d1b6bde6 100644
--- a/src/Propellor/Property/Systemd.hs
+++ b/src/Propellor/Property/Systemd.hs
@@ -53,7 +53,7 @@ enabled n = trivial $ cmdProperty "systemctl" ["enable", n]
-- | Disables a systemd service.
disabled :: ServiceName -> Property
-disabled n = trivial $ cmdProperty "systemctl" ["distable", n]
+disabled n = trivial $ cmdProperty "systemctl" ["disable", n]
`describe` ("service " ++ n ++ " disabled")
-- | Enables persistent storage of the journal.