Commit 78dd9c6176b510f25ba8f6b2a8aeacb786a6fffa
1 parent
1c940a8351
README tweaks
Showing 1 changed file with 11 additions and 6 deletions Side-by-side Diff
README.md
... | ... | @@ -75,12 +75,15 @@ |
75 | 75 | in the `manifests/site.pp` file in the Boxen repo. You'll see a default node |
76 | 76 | declaration that looks like the following: |
77 | 77 | |
78 | - node default { | |
79 | - # core modules, needed for most things | |
80 | - include dnsmasq | |
81 | - <...> | |
82 | - } | |
78 | +``` puppet | |
79 | +node default { | |
80 | + # core modules, needed for most things | |
81 | + include dnsmasq | |
83 | 82 | |
83 | + # more... | |
84 | +} | |
85 | +``` | |
86 | + | |
84 | 87 | ### How Boxen interacts with Puppet |
85 | 88 | |
86 | 89 | Boxen runs everything declared in `manifests/site.pp` by default. |
... | ... | @@ -94,7 +97,9 @@ |
94 | 97 | to include all of the modules your organization wants to install for |
95 | 98 | everyone by default. An example of this might look like so: |
96 | 99 | |
97 | -``` | |
100 | +``` puppet | |
101 | +# modules/github/manifests/environment.pp | |
102 | + | |
98 | 103 | class github::environment { |
99 | 104 | include github::apps::mac |
100 | 105 |