diff --git a/src/Propellor/Property/Systemd.hs b/src/Propellor/Property/Systemd.hs index d91b441..d1b6bde 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.