README tweaks
This commit is contained in:
parent
1c940a8351
commit
78dd9c6176
1 changed files with 11 additions and 6 deletions
13
README.md
13
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
|
in the `manifests/site.pp` file in the Boxen repo. You'll see a default node
|
||||||
declaration that looks like the following:
|
declaration that looks like the following:
|
||||||
|
|
||||||
node default {
|
``` puppet
|
||||||
|
node default {
|
||||||
# core modules, needed for most things
|
# core modules, needed for most things
|
||||||
include dnsmasq
|
include dnsmasq
|
||||||
<...>
|
|
||||||
}
|
# more...
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
### How Boxen interacts with Puppet
|
### 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
|
to include all of the modules your organization wants to install for
|
||||||
everyone by default. An example of this might look like so:
|
everyone by default. An example of this might look like so:
|
||||||
|
|
||||||
```
|
``` puppet
|
||||||
|
# modules/github/manifests/environment.pp
|
||||||
|
|
||||||
class github::environment {
|
class github::environment {
|
||||||
include github::apps::mac
|
include github::apps::mac
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue