summaryrefslogtreecommitdiff
path: root/doc/haskell_newbie.mdwn
diff options
context:
space:
mode:
authorJoey Hess2017-01-05 11:57:24 -0400
committerJoey Hess2017-01-05 11:57:24 -0400
commit467f5f9959ab9ce13e9e6bf65e3a2bbe461a0984 (patch)
tree3f8ee2b3dcbdc7e7d96d2d1a6105b1740275655d /doc/haskell_newbie.mdwn
parent91242b77b7a53ec83b686553a729e4ff94994c02 (diff)
add missing props to Host definitions
Diffstat (limited to 'doc/haskell_newbie.mdwn')
-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"]