summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/Propellor/Info.hs4
-rw-r--r--src/Propellor/Property/Sbuild.hs2
-rw-r--r--src/Propellor/Types/OS.hs2
3 files changed, 4 insertions, 4 deletions
diff --git a/src/Propellor/Info.hs b/src/Propellor/Info.hs
index 01a53ad5..f3627174 100644
--- a/src/Propellor/Info.hs
+++ b/src/Propellor/Info.hs
@@ -91,13 +91,13 @@ hasContainerCapability c = elem c
-- It also lets the type checker know that all the properties of the
-- host must support Debian.
--
--- > & osDebian (Stable "stretch") X86_64
+-- > & osDebian (Stable "buster") X86_64
osDebian :: DebianSuite -> Architecture -> Property (HasInfo + Debian)
osDebian = osDebian' Linux
-- Use to specify a different `DebianKernel` than the default `Linux`
--
--- > & osDebian' KFreeBSD (Stable "stretch") X86_64
+-- > & osDebian' KFreeBSD (Stable "buster") X86_64
osDebian' :: DebianKernel -> DebianSuite -> Architecture -> Property (HasInfo + Debian)
osDebian' kernel suite arch = tightenTargets $ os (System (Debian kernel suite) arch)
diff --git a/src/Propellor/Property/Sbuild.hs b/src/Propellor/Property/Sbuild.hs
index 26e7ae8e..1562f80e 100644
--- a/src/Propellor/Property/Sbuild.hs
+++ b/src/Propellor/Property/Sbuild.hs
@@ -21,7 +21,7 @@ stretch, which older sbuild can't handle.
Suggested usage in @config.hs@:
> mybox = host "mybox.example.com" $ props
-> & osDebian (Stable "stretch") X86_64
+> & osDebian (Stable "buster") X86_64
> & Apt.useLocalCacher
> & sidSchrootBuilt
> & Sbuild.usableBy (User "spwhitton")
diff --git a/src/Propellor/Types/OS.hs b/src/Propellor/Types/OS.hs
index 34ea4272..7c87b555 100644
--- a/src/Propellor/Types/OS.hs
+++ b/src/Propellor/Types/OS.hs
@@ -59,7 +59,7 @@ data DebianKernel = Linux | KFreeBSD | Hurd
deriving (Show, Eq)
-- | Debian has several rolling suites, and a number of stable releases,
--- such as Stable "stretch".
+-- such as Stable "buster".
data DebianSuite = Experimental | Unstable | Testing | Stable Release
deriving (Show, Eq)