summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoey Hess2015-04-19 09:41:40 -0400
committerJoey Hess2015-04-19 09:41:40 -0400
commitb9a093c988d7643699cca20e0e104dc4ecc08180 (patch)
treeeb700adfcf9825101e4e137a0c2c79ebfbc1b784
parent775d72d627ab08535a4fa250ed9d789f3b6792cc (diff)
jessie is almost ready to be the new debian stable, update a few examples
no behavior changes
-rw-r--r--config-simple.hs4
-rw-r--r--src/Propellor/Types/OS.hs2
2 files changed, 3 insertions, 3 deletions
diff --git a/config-simple.hs b/config-simple.hs
index 9900d6be..aca129e9 100644
--- a/config-simple.hs
+++ b/config-simple.hs
@@ -41,8 +41,8 @@ hosts =
-- A generic webserver in a Docker container.
webserverContainer :: Docker.Container
-webserverContainer = Docker.container "webserver" "joeyh/debian-stable"
- & os (System (Debian (Stable "wheezy")) "amd64")
+webserverContainer = Docker.container "webserver" "debian"
+ & os (System (Debian (Stable "jessie")) "amd64")
& Apt.stdSourcesList
& Docker.publish "80:80"
& Docker.volume "/var/www:/var/www"
diff --git a/src/Propellor/Types/OS.hs b/src/Propellor/Types/OS.hs
index 8b3cd0fd..2bb41446 100644
--- a/src/Propellor/Types/OS.hs
+++ b/src/Propellor/Types/OS.hs
@@ -25,7 +25,7 @@ data Distribution
deriving (Show, Eq)
-- | Debian has several rolling suites, and a number of stable releases,
--- such as Stable "wheezy".
+-- such as Stable "jessie".
data DebianSuite = Experimental | Unstable | Testing | Stable Release
deriving (Show, Eq)