diff options
| author | Joey Hess <joeyh@joeyh.name> | 2017-01-05 11:57:24 -0400 |
|---|---|---|
| committer | Joey Hess <joeyh@joeyh.name> | 2017-01-05 11:57:24 -0400 |
| commit | 467f5f9959ab9ce13e9e6bf65e3a2bbe461a0984 (patch) | |
| tree | 3f8ee2b3dcbdc7e7d96d2d1a6105b1740275655d /doc | |
| parent | 91242b77b7a53ec83b686553a729e4ff94994c02 (diff) | |
add missing props to Host definitions
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"] |
