From 78dd9c6176b510f25ba8f6b2a8aeacb786a6fffa Mon Sep 17 00:00:00 2001 From: Will Farrington Date: Mon, 15 Oct 2012 11:25:41 -1000 Subject: [PATCH] README tweaks --- README.md | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 62f92a0..e516d21 100644 --- a/README.md +++ b/README.md @@ -75,11 +75,14 @@ which is essentially the machine on which Puppet is running. Puppet looks for in the `manifests/site.pp` file in the Boxen repo. You'll see a default node declaration that looks like the following: - node default { - # core modules, needed for most things - include dnsmasq - <...> - } +``` puppet +node default { + # core modules, needed for most things + include dnsmasq + + # more... +} +``` ### How Boxen interacts with Puppet @@ -94,7 +97,9 @@ that's very common is to create a module for your organization to include all of the modules your organization wants to install for everyone by default. An example of this might look like so: -``` +``` puppet +# modules/github/manifests/environment.pp + class github::environment { include github::apps::mac