summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorJoey Hess2017-01-21 12:31:26 +1100
committerJoey Hess2017-01-21 12:31:26 +1100
commit012e34cab65b2b25f5268b9bcec8437c310f9408 (patch)
tree8d60fa8bdd3566c558984630382771000c5f899d /doc
parent0b2db49c28a44cfd4f734135e4e55ba16afc139a (diff)
parentec3b4dc95590e89d066edf445f35bdbc1aee40e4 (diff)
Merge branch 'joeyconfig'
Diffstat (limited to 'doc')
-rw-r--r--doc/haskell_newbie.mdwn4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/haskell_newbie.mdwn b/doc/haskell_newbie.mdwn
index d6e339ed..dc3c54a7 100644
--- a/doc/haskell_newbie.mdwn
+++ b/doc/haskell_newbie.mdwn
@@ -47,12 +47,12 @@ Finally, you need to define the configuration for each host in the list:
[[!format haskell """
mylaptop :: Host
-mylaptop = host "mylaptop.example.com"
+mylaptop = host "mylaptop.example.com" $ props
& osDebian Unstable X86_64
& Apt.stdSourcesList
myserver :: Host
-myserver = host "server.example.com"
+myserver = host "server.example.com" $ props
& osDebian (Stable "jessie") X86_64
& Apt.stdSourcesList
& Apt.installed ["ssh"]