The problem this exposes has to do with requires. As implemented, requires yields either a Property HasInfo or a Property NoInfo depending on its inputs. That works. But look what happens when it's used: *Propellor.Types> let foo = IProperty "foo" (return NoChange) mempty mempty *Propellor.Types> let bar = IProperty "bar" (return NoChange) mempty mempty *Propellor.Types> foo `requires` bar <interactive>:17:5: No instance for (Requires (Property HasInfo) (Property HasInfo) r0) arising from a use of `requires' The type variable `r0' is ambiguous Possible fix: add a type signature that fixes these type variable(s) Note: there is a potential instance available: instance Requires (Property HasInfo) (Property HasInfo) (Property HasInfo) -- Defined at Propellor/Types.hs:167:10 Possible fix: add an instance declaration for (Requires (Property HasInfo) (Property HasInfo) r0) In the expression: foo `requires` bar In an equation for `it': it = foo `requires` bar This can be avoided by specifying the result type: *Propellor.Types> (foo `requires` bar) :: Property HasInfo property "foo" But then when multiple `requires` are given, the result type has to be given each time: *Propellor.Types> (foo `requires` bar `requires` bar) :: Property HasInfo <interactive>:22:6: No instance for (Requires (Property HasInfo) (Property HasInfo) x0) arising from a use of `requires' The type variable `x0' is ambiguous Possible fix: add a type signature that fixes these type variable(s) Note: there is a potential instance available: instance Requires (Property HasInfo) (Property HasInfo) (Property HasInfo) -- Defined at Propellor/Types.hs:167:10 Possible fix: add an instance declaration for (Requires (Property HasInfo) (Property HasInfo) x0) In the first argument of `requires', namely `foo `requires` bar' In the expression: (foo `requires` bar `requires` bar) :: Property HasInfo In an equation for `it': it = (foo `requires` bar `requires` bar) :: Property HasInfo <interactive>:22:21: No instance for (Requires x0 (Property HasInfo) (Property HasInfo)) arising from a use of `requires' The type variable `x0' is ambiguous Possible fix: add a type signature that fixes these type variable(s) Note: there are several potential instances: instance Requires (Property NoInfo) (Property HasInfo) (Property HasInfo) -- Defined at Propellor/Types.hs:175:10 instance Requires (Property HasInfo) (Property HasInfo) (Property HasInfo) -- Defined at Propellor/Types.hs:167:10 Possible fix: add an instance declaration for (Requires x0 (Property HasInfo) (Property HasInfo)) In the expression: (foo `requires` bar `requires` bar) :: Property HasInfo In an equation for `it': it = (foo `requires` bar `requires` bar) :: Property HasInfo *Propellor.Types> (((foo `requires` bar) :: Property HasInfo) `requires` bar) :: Property HasInfo property "foo" Yuggh! |
||
---|---|---|
debian | ||
doc | ||
privdata.joey | ||
src | ||
.gitignore | ||
CHANGELOG | ||
LICENSE | ||
Makefile | ||
README.md | ||
Setup.hs | ||
config-joey.hs | ||
config-simple.hs | ||
config.hs | ||
propellor.cabal |
README.md
Propellor is a configuration management system using Haskell and Git. Each system has a list of properties, which Propellor ensures are satisfied.
Propellor is configured via a git repository, which typically lives
in ~/.propellor/
on your development machine. Propellor clones the
repository to each host it manages, in a
secure way. The git repository
contains the full source code to Propellor, along with its config file.
Properties are defined using Haskell. Edit ~/.propellor/config.hs
to get started. There is fairly complete
API documentation,
which includes many built-in Properties for dealing with
Apt
and
Apache
,
Cron
and
Commands
,
Dns
and
Docker, etc.
There is no special language as used in puppet, chef, ansible, etc.. just the full power of Haskell. Hopefully that power can be put to good use in making declarative properties that are powerful, nicely idempotent, and easy to adapt to a system's special needs!
If using Haskell to configure Propellor seems intimidating, see configuration for the Haskell newbie.
quick start
- Get propellor installed on your development machine (ie, laptop).
cabal install propellor
orapt-get install propellor
- Run
propellor
for the first time. It will set up a~/.propellor/
git repository for you. - If you don't have a gpg private key already, generate one:
gpg --gen-key
- Run:
propellor --add-key $KEYID
, which will make propellor trust your gpg key, and will sign your~/.propellor
repository using it. - Edit
~/.propellor/config.hs
, and add a host you want to manage. You can start by not adding any properties, or only a few. - Run:
propellor --spin $HOST
- Now you have a simple propellor deployment, but it doesn't do
much to the host yet, besides installing propellor.
So, edit~/.propellor/config.hs
to configure the host, add some properties to it, and re-run step 6.
Repeat until happy and move on to the next host. :) - Optionally, set up a centralized git repository
so that multiple hosts can be updated with a simple
git commit -S; git push
- Write some neat new properties and send patches!