Configs
Go to file
Joey Hess 841a997776 add .lock and .lastchecked to gitignore 2015-06-01 18:40:18 -04:00
debian propellor spin 2015-06-01 17:00:57 -04:00
doc update example 2015-04-25 11:23:46 -04:00
privdata.joey update 2015-05-27 11:23:45 -04:00
src descs 2015-06-01 18:34:15 -04:00
.gitignore add .lock and .lastchecked to gitignore 2015-06-01 18:40:18 -04:00
CHANGELOG changelog 2014-04-01 15:07:07 -04:00
LICENSE update email 2014-11-15 15:03:54 -04:00
Makefile Makefile is no longer used when running propellor, so build target is only used for building packages, or manual build 2015-02-28 14:30:40 -04:00
README.md add basic front page 2014-04-19 15:45:27 -04:00
Setup.hs fix 2014-03-30 23:39:07 -04:00
config-joey.hs propellor spin 2015-06-01 18:21:32 -04:00
config-simple.hs API change: Added User and Group newtypes, and Properties that used to use the type UserName = String were changed to use them. 2015-04-22 13:04:39 -04:00
config.hs change joeyconfig back after merging from master 2014-04-19 16:17:47 -04:00
propellor.cabal refactor 2015-05-18 00:25:55 -04:00

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. See components for details.

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

  1. Get propellor installed on your development machine (ie, laptop). cabal install propellor or apt-get install propellor
  2. Run propellor for the first time. It will set up a ~/.propellor/ git repository for you.
  3. If you don't have a gpg private key already, generate one: gpg --gen-key
  4. Run: propellor --add-key $KEYID, which will make propellor trust your gpg key, and will sign your ~/.propellor repository using it.
  5. Edit ~/.propellor/config.hs, and add a host you want to manage. You can start by not adding any properties, or only a few.
  6. Run: propellor --spin $HOST
  7. 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. :)
  8. Optionally, set up a centralized git repository so that multiple hosts can be updated with a simple git commit -S; git push
  9. Write some neat new properties and send patches!