summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/Propellor/Property/Apt.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Propellor/Property/Apt.hs b/src/Propellor/Property/Apt.hs
index 68927337..ecc82b57 100644
--- a/src/Propellor/Property/Apt.hs
+++ b/src/Propellor/Property/Apt.hs
@@ -110,14 +110,14 @@ stdArchiveLines = return . binandsrc =<< getMirror
securityUpdates :: SourcesGenerator
securityUpdates suite
| isStable suite || suite == Testing =
- let l = "deb http://security.debian.org/ " ++ securitysuite ++ "/updates " ++ unwords stdSections
+ let l = "deb http://security.debian.org/ " ++ securitysuite ++ " " ++ unwords stdSections
in [l, srcLine l]
| otherwise = []
where
securitysuite
| suite == Testing = "testing-security"
| suite `elem` map Stable releasesusingoldname =
- showSuite suite
+ showSuite suite ++ "/updates"
| otherwise = showSuite suite ++ "-security"
releasesusingoldname = ["jessie", "buster", "stretch"]