summaryrefslogtreecommitdiff
path: root/src/Propellor/Property
diff options
context:
space:
mode:
authorJoey Hess2019-07-16 11:24:37 -0400
committerJoey Hess2019-07-16 11:24:47 -0400
commit1487c21f24cce6dc2d1f26eb02303d6ca6e68f50 (patch)
tree864c7e8f89581943991e2e3f2ddb6338a78ee5c8 /src/Propellor/Property
parent381ac4890cfced84edb9e115e1e53387f6fb8392 (diff)
Systemd.machined: Fix a bug that caused the systemd-container package to not be installed when used with Debian buster.
jessie (oldoldstable) is the only still supported release to have a systemd from before the systemd-container package was split out.
Diffstat (limited to 'src/Propellor/Property')
-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 5d597ac6..42025912 100644
--- a/src/Propellor/Property/Systemd.hs
+++ b/src/Propellor/Property/Systemd.hs
@@ -210,7 +210,7 @@ machined = installeddebian `pickOS` assumeinstalled
case o of
-- Split into separate debian package since systemd 225.
(Just (System (Debian _ suite) _))
- | not (isStable suite) || suite == (Stable "stretch") ->
+ | not (isStable suite) || suite /= (Stable "jessie") ->
ensureProperty w $ Apt.installed ["systemd-container"]
_ -> noChange
assumeinstalled :: Property Linux