Make Python-path configurable
This commit introduces a Makefile that needs to be run initially to
configure reclass for use on the local system, by setting the full path
to the Python interpreter.
Closes: #1
Signed-off-by: martin f. krafft <madduck@madduck.net>
diff --git a/README b/README
index a18b280..ca3de45 100644
--- a/README
+++ b/README
@@ -36,6 +36,19 @@
In this document, you will find an overview of the concepts of reclass, the
way it works, and how it can be tied in with Ansible.
+Installation
+~~~~~~~~~~~~
+Before you can use reclass, you need to run make to configure the scripts to
+your system. Right now, this only involves setting the full path to the
+Python interpreter.
+
+ make
+
+If your Python interpreter is not /usr/bin/python and is also not in your
+$PATH, then you need to pass that to make, e.g.
+
+ make PYTHON=/opt/local/bin/python
+
Quick start — Ansible
~~~~~~~~~~~~~~~~~~~~~
The following steps should get you up and running quickly. Generally, we will