diff options
| author | Joey Hess <joeyh@joeyh.name> | 2017-01-21 12:31:26 +1100 |
|---|---|---|
| committer | Joey Hess <joeyh@joeyh.name> | 2017-01-21 12:31:26 +1100 |
| commit | 012e34cab65b2b25f5268b9bcec8437c310f9408 (patch) | |
| tree | 8d60fa8bdd3566c558984630382771000c5f899d /doc | |
| parent | 0b2db49c28a44cfd4f734135e4e55ba16afc139a (diff) | |
| parent | ec3b4dc95590e89d066edf445f35bdbc1aee40e4 (diff) | |
Merge branch 'joeyconfig'
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/haskell_newbie.mdwn | 4 |
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"] |
