summaryrefslogtreecommitdiff
path: root/src/Propellor/Info.hs
diff options
context:
space:
mode:
authorJoey Hess2019-07-16 11:20:48 -0400
committerJoey Hess2019-07-16 11:22:38 -0400
commit381ac4890cfced84edb9e115e1e53387f6fb8392 (patch)
tree04e08aacf4291e49a0d48352814a215812a203d4 /src/Propellor/Info.hs
parentcd4cd311903a41bea565311efe56aebb7ba20c34 (diff)
update from Stable "stretch" to Stable "buster" in some examples
Diffstat (limited to 'src/Propellor/Info.hs')
-rw-r--r--src/Propellor/Info.hs4
1 files changed, 2 insertions, 2 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)