Test-driven system administration with a little extra logic.
Test-driven system administration in SWI-Prolog, in the style of Babushka.
Marelle uses logic programming to describe system targets and rules by which these targets can be met. Prolog's built-in search mechanism makes writing and using these dependencies elegant. Anecdotally, writing deps for Marelle has the feel of teaching it about types of packages, rather than the feel of writing package templates.
Working and in active use.
Marelle has some features common to other configuration management frameworks:
It also has some interesting differences:
met
predicates) without needing to say how to meet them (meet
predicates)Run the bootstrap script:
bash -c "`curl https://raw.github.com/larsyencken/marelle/master/bootstrap.sh`"
This will install marelle as the current user, putting the executable in ~/.local/bin/marelle
.
brew install swi-prolog
sudo apt-get install swi-prolog-nox
brew install git
sudo apt-get install git
# clone the repo
mkdir -p ~/.local
git clone https://github.com/larsyencken/marelle ~/.local/marelle
# set up an executable
mkdir -p ~/.local/bin
cat >~/.local/bin/marelle <<EOF
#!/bin/bash
exec swipl -q -t main -s ~/.local/marelle/marelle.pl "$@"
EOF
chmod a+x ~/.local/bin/marelle
Make a marelle-deps/
folder inside your project repo. Each package has two components, a met/2
goal which checks if the dependency is met, and an meet/2
goal with instructions on how to actually meet it if it's missing.
For example, suppose I want to write a dep for Python that works on recent Ubuntu flavours. I might write:
% python is a target to meet
pkg(python).
% it's installed if it exists at /usr/bin/python
met(python, linux(_)) :- exists_file('/usr/bin/python').
% we can install by running apt-get in shell
meet(python, linux(_)) :-
% could also use: install_apt('python-dev')
bash('sudo apt-get install -y python-dev').
To install python on a machine, I'd now run marelle meet python
.
To install pip, I might write:
pkg(pip).
% pip is installed if we can run it
met(pip, _) :- which(pip).
% on all flavours of linux, try to install the python-pip package
meet(pip, linux(_)) :- install_apt('python-pip').
% on all platforms, pip depends on python
depends(pip, _, [python]).
Note our our use of platform specifiers and the _
wildcard in their place. To see your current platform as described by marelle, run marelle platform
. Examples include: osx
, linux(precise)
and linux(raring)
.
This runs every met/2
statement that's valid for your platform.
marelle scan
This will run the meet/2
clause for your package, provided a valid one exists for your current platform.
marelle meet python
To find the right platform code to use in deps you're writing, run:
marelle platform
It reports the code for the platform you're currently on.
Like both Babushka and Babashka, Marelle looks for deps in ~/.marelle/deps
and in a folder called marelle-deps
in the current directory, if either exists. This allows you to set up a personal set of deps for your environment, as well as project-specific deps.
See my marelle-deps repo for working examples.