2014-04-19 21:27:54 +00:00
|
|
|
[[!meta title="Propellor configuration for the Haskell newbie"]]
|
|
|
|
|
2014-04-19 21:10:12 +00:00
|
|
|
Propellor's config file is written in Haskell, and
|
|
|
|
[Haskell](http://www.haskell.org/) is invaluable to extend Propellor with
|
|
|
|
your own custom properties. But you don't need to know about monads to
|
|
|
|
configure Propellor!
|
2014-04-19 21:08:20 +00:00
|
|
|
|
|
|
|
Let's take a quick tour of the `config.hs` file..
|
|
|
|
|
|
|
|
[[!format haskell """
|
|
|
|
-- | This is the main configuration file for Propellor, and is used to build
|
|
|
|
-- the propellor program.
|
|
|
|
"""]]
|
|
|
|
|
|
|
|
So, `-- ` starts a comment in this file.
|
|
|
|
|
|
|
|
[[!format haskell """
|
|
|
|
import Propellor
|
|
|
|
import Propellor.CmdLine
|
|
|
|
import qualified Propellor.Property.File as File
|
|
|
|
import qualified Propellor.Property.Apt as Apt
|
|
|
|
import qualified Propellor.Property.User as User
|
|
|
|
import qualified Propellor.Property.Cron as Cron
|
|
|
|
"""]]
|
|
|
|
|
2014-08-19 21:33:00 +00:00
|
|
|
This loads up Propellor's modules. You'll almost certainly want these;
|
2014-04-19 21:08:20 +00:00
|
|
|
many more can be found in the [API documentation](http://hackage.haskell.org/package/propellor).
|
|
|
|
|
|
|
|
[[!format haskell """
|
|
|
|
main :: IO ()
|
|
|
|
main = defaultMain hosts
|
|
|
|
"""]]
|
|
|
|
|
|
|
|
This config file *is* the Propellor program, and so it needs a little
|
|
|
|
stub to go run itself. No need to ever change this part.
|
|
|
|
`hosts` is the list of hosts that you configure, and it comes next:
|
|
|
|
|
|
|
|
[[!format haskell """
|
|
|
|
-- The hosts propellor knows about.
|
|
|
|
-- Edit this to configure propellor!
|
|
|
|
hosts :: [Host]
|
|
|
|
hosts =
|
2014-04-19 21:11:52 +00:00
|
|
|
[ host "mybox.example.com"
|
2014-06-05 21:30:25 +00:00
|
|
|
& os (System (Debian Unstable) "amd64")
|
|
|
|
& Apt.stdSourcesList
|
2014-04-19 21:11:52 +00:00
|
|
|
, host "server.example.com"
|
2014-06-05 21:30:25 +00:00
|
|
|
& os (System (Debian Stable) "amd64")
|
|
|
|
& Apt.stdSourcesList
|
2014-04-19 21:11:52 +00:00
|
|
|
& Apt.installed ["ssh"]
|
|
|
|
]
|
2014-04-19 21:08:20 +00:00
|
|
|
"""]]
|
|
|
|
|
|
|
|
This defines a list of hosts, with two hosts in it.
|
|
|
|
|
2014-06-05 21:30:25 +00:00
|
|
|
The configuration for the mybox host first tells propellor what
|
|
|
|
OS it's running. Then the `stdSourcesList` line tells propellor to
|
|
|
|
configure its `/etc/apt/sources.list`, using its OS.
|
|
|
|
(Of course you might want to change that `Unstable` to `Stable`.)
|
2014-04-19 21:08:20 +00:00
|
|
|
|
|
|
|
Each property of the host is prefixed with an "&" operator. This just makes
|
2014-06-05 21:30:25 +00:00
|
|
|
a list of properties.
|
2014-04-19 21:08:20 +00:00
|
|
|
|
|
|
|
Some other properties you may find in your config.hs, or want to add:
|
|
|
|
|
|
|
|
[[!format haskell """
|
2014-04-19 21:11:52 +00:00
|
|
|
& Apt.unattendedUpgrades
|
|
|
|
& User.hasSomePassword "root"
|
2014-04-19 23:19:37 +00:00
|
|
|
& "/etc/default/foodaemon" `File.containsLine` "ENABLED=yes"
|
2014-04-19 21:11:52 +00:00
|
|
|
& Cron.runPropellor "30 * * * *"
|
2014-04-19 21:08:20 +00:00
|
|
|
"""]]
|
|
|
|
|
|
|
|
Some of these properties can be reverted -- this makes Propellor undo whatever
|
|
|
|
effects they might have. For example, unattended upgrades can be scary, so
|
|
|
|
maybe you turned that on, but want to disable it now. To do so, just change
|
|
|
|
the "&" to a "!"
|
|
|
|
|
|
|
|
[[!format haskell """
|
2014-04-19 21:11:52 +00:00
|
|
|
! Apt.unattendedUpgrades
|
2014-04-19 21:08:20 +00:00
|
|
|
"""]]
|
|
|
|
|
|
|
|
Some properties cannot be reverted. Yet. It takes coding to implement
|
|
|
|
revertability. If you try to revert a property that does not support
|
|
|
|
reversion, propellor will **fail to compile**! This is a good thing..
|
|
|
|
it avoids you getting confused or bad things happening.
|
|
|
|
|
|
|
|
The error message when this happens might look a little scary. But if
|
|
|
|
you read through it, it's remarkably precise about what and where the problem
|
|
|
|
is.
|
|
|
|
|
|
|
|
<pre>
|
2014-04-19 21:28:22 +00:00
|
|
|
config.hs:30:19:
|
2014-04-19 21:08:20 +00:00
|
|
|
Couldn't match expected type `RevertableProperty'
|
|
|
|
with actual type `Property'
|
|
|
|
In the return type of a call of `Apt.installed'
|
|
|
|
In the second argument of `(!)', namely `Apt.installed ["ssh"]'
|
|
|
|
In the first argument of `(&)', namely
|
|
|
|
`host "mybox.example.com" & Apt.stdSourcesList Unstable
|
|
|
|
& Apt.unattendedUpgrades
|
|
|
|
! Apt.installed ["ssh"]'
|
|
|
|
</pre>
|
|
|
|
|
|
|
|
Similarly, if you make a typo in the config file, you'll probably get a long
|
|
|
|
but informative error message.
|
|
|
|
|
|
|
|
<pre>
|
2014-04-19 21:28:22 +00:00
|
|
|
config.hs:27:19:
|
2014-04-19 21:08:20 +00:00
|
|
|
Not in scope: `Apt.standardSourcesList'
|
|
|
|
Perhaps you meant one of these:
|
|
|
|
`Apt.stdSourcesList' (imported from Propellor.Property.Apt)
|
|
|
|
...
|
|
|
|
</pre>
|
|
|
|
|
|
|
|
That's really all there is to configuring Propellor. Once you
|
|
|
|
have a `config.hs` ready to try out, you can run `propellor --spin $host`
|
2014-04-19 21:14:06 +00:00
|
|
|
on one of the hosts configured in it.
|
|
|
|
|
|
|
|
See the [[README]] for a further quick start.
|
|
|
|
|
|
|
|
(If you'd like to learn a little Haskell after all, check out
|
|
|
|
[Learn You a Haskell for Great Good](http://learnyouahaskell.com/).)
|