diff options
| author | Joey Hess <joeyh@joeyh.name> | 2016-03-25 15:28:31 -0400 |
|---|---|---|
| committer | Joey Hess <joeyh@joeyh.name> | 2016-03-25 15:28:31 -0400 |
| commit | 1edce2b72614e2e8eceefde97436db024799ff20 (patch) | |
| tree | bee36dec11710fae9cb93fe6d6f7e32293f26e01 /config-simple.hs | |
| parent | 9768434f5fa2f2ed0bbb0212763a76471186a3cd (diff) | |
ported Property.Apt
Diffstat (limited to 'config-simple.hs')
| -rw-r--r-- | config-simple.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config-simple.hs b/config-simple.hs index 21accd18..28b38409 100644 --- a/config-simple.hs +++ b/config-simple.hs @@ -25,7 +25,7 @@ hosts = -- An example host. mybox :: Host -mybox = host "mybox.example.com" +mybox = host "mybox.example.com" $ props & os (System (Debian Unstable) "amd64") & Apt.stdSourcesList & Apt.unattendedUpgrades @@ -40,7 +40,7 @@ mybox = host "mybox.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 & os (System (Debian (Stable "jessie")) "amd64") & Apt.stdSourcesList & Docker.publish "80:80" |
