summaryrefslogtreecommitdiff
path: root/doc/haskell_newbie.mdwn
diff options
context:
space:
mode:
Diffstat (limited to 'doc/haskell_newbie.mdwn')
-rw-r--r--doc/haskell_newbie.mdwn6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/haskell_newbie.mdwn b/doc/haskell_newbie.mdwn
index d6e339ed..8f3b60cf 100644
--- a/doc/haskell_newbie.mdwn
+++ b/doc/haskell_newbie.mdwn
@@ -47,13 +47,13 @@ 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"
- & osDebian (Stable "jessie") X86_64
+myserver = host "server.example.com" $ props
+ & osDebian (Stable "stretch") X86_64
& Apt.stdSourcesList
& Apt.installed ["ssh"]
"""]]