diff options
| author | Sean Whitton <spwhitton@spwhitton.name> | 2018-02-16 18:16:21 -0700 |
|---|---|---|
| committer | Joey Hess <joeyh@joeyh.name> | 2018-02-17 13:53:13 -0400 |
| commit | c5785263996a88dbceee664805714ed5ed16c302 (patch) | |
| tree | 280d93862740a4c61a524ec47b3002eb73ce12bc /src | |
| parent | 605b301429c36a3a9ff9f921f69196c429e70224 (diff) | |
Systemd.machined should install systemd-container on Debian stretch
Signed-off-by: Sean Whitton <spwhitton@spwhitton.name>
Diffstat (limited to 'src')
| -rw-r--r-- | src/Propellor/Property/Systemd.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Propellor/Property/Systemd.hs b/src/Propellor/Property/Systemd.hs index 51d1313c..8fa236d2 100644 --- a/src/Propellor/Property/Systemd.hs +++ b/src/Propellor/Property/Systemd.hs @@ -205,8 +205,8 @@ machined = withOS "machined installed" $ \w o -> case o of -- Split into separate debian package since systemd 225. (Just (System (Debian _ suite) _)) - | not (isStable suite) -> ensureProperty w $ - Apt.installed ["systemd-container"] + | not (isStable suite) || suite == (Stable "stretch") -> + ensureProperty w $ Apt.installed ["systemd-container"] _ -> noChange -- | Defines a container with a given machine name, |
