diff options
| author | Joey Hess <joeyh@joeyh.name> | 2016-03-27 18:17:28 -0400 |
|---|---|---|
| committer | Joey Hess <joeyh@joeyh.name> | 2016-03-27 18:17:28 -0400 |
| commit | 7e76731a0098a6cd47979c86c8a484cc47e0b0d7 (patch) | |
| tree | 57bc036a55d6792e5760c4e85fdfa600b46ace26 /config-freebsd.hs | |
| parent | 553cd683761ca27dc220a5b2228bf3942c296897 (diff) | |
finished the conversion, including my config file!
It builds, but I have not yet tested if it works. Need to verify info
propagation, etc.
Diffstat (limited to 'config-freebsd.hs')
| -rw-r--r-- | config-freebsd.hs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/config-freebsd.hs b/config-freebsd.hs index 07aeb391..3ee3f27c 100644 --- a/config-freebsd.hs +++ b/config-freebsd.hs @@ -27,7 +27,7 @@ hosts = -- An example freebsd host. freebsdbox :: Host -freebsdbox = host "freebsdbox.example.com" +freebsdbox = host "freebsdbox.example.com" $ props & osFreeBSD (FBSDProduction FBSD102) "amd64" & Pkg.update & Pkg.upgrade @@ -43,7 +43,7 @@ poudriereZFS = Poudriere.defaultConfig -- An example linux host. linuxbox :: Host -linuxbox = host "linuxbox.example.com" +linuxbox = host "linuxbox.example.com" $ props & osDebian Unstable "amd64" & Apt.stdSourcesList & Apt.unattendedUpgrades @@ -58,7 +58,7 @@ linuxbox = host "linuxbox.example.com" -- A generic webserver in a Docker container. webserverContainer :: Docker.Container -webserverContainer = Docker.container "webserver" (Docker.latestImage "debian") +webserverContainer = Docker.container "webserver" (Docker.latestImage "debian") $ props & osDebian (Stable "jessie") "amd64" & Apt.stdSourcesList & Docker.publish "80:80" |
