summaryrefslogtreecommitdiff
path: root/config-freebsd.hs
diff options
context:
space:
mode:
authorFĂ©lix Sipma2016-05-29 18:26:31 +0200
committerJoey Hess2016-06-13 23:27:14 -0400
commit9c0a95160a5460e8cbe4454ce7a7c9df1217e5e5 (patch)
tree82f85300c9bb5660bc15410e40c383999a4d299f /config-freebsd.hs
parent087ccaa8fff0efc52c29fe9a92773a1d991dbe4c (diff)
add DebianKernel datatype
(cherry picked from commit 3590a1241580ddcdd153e2619a3c02ce18a8db8c but without the changes to src/Propellor/Precompiled.hs)
Diffstat (limited to 'config-freebsd.hs')
-rw-r--r--config-freebsd.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/config-freebsd.hs b/config-freebsd.hs
index 6c92af8a..80abb89d 100644
--- a/config-freebsd.hs
+++ b/config-freebsd.hs
@@ -44,7 +44,7 @@ poudriereZFS = Poudriere.defaultConfig
-- An example linux host.
linuxbox :: Host
linuxbox = host "linuxbox.example.com" $ props
- & osDebian Unstable X86_64
+ & osDebian' KFreeBSD Unstable X86_64
& Apt.stdSourcesList
& Apt.unattendedUpgrades
& Apt.installed ["etckeeper"]
@@ -59,7 +59,7 @@ linuxbox = host "linuxbox.example.com" $ props
-- A generic webserver in a Docker container.
webserverContainer :: Docker.Container
webserverContainer = Docker.container "webserver" (Docker.latestImage "debian") $ props
- & osDebian (Stable "jessie") X86_64
+ & osDebian' KFreeBSD (Stable "jessie") X86_64
& Apt.stdSourcesList
& Docker.publish "80:80"
& Docker.volume "/var/www:/var/www"