Commit bb7c7b49b78ce8a883507ff4c929a200c5da05a8

Authored by Will Farrington
1 parent c0f26dfc56

people module doc update

Showing 1 changed file with 11 additions and 1 deletions Side-by-side Diff

modules/people/README.md
... ... @@ -8,7 +8,7 @@
8 8 include emacs # requires emacs module in Puppetfile
9 9 include sparrow # requires sparrow module in Puppetfile
10 10  
11   - $home = '/Users/jbarnette'
  11 + $home = "/Users/${::luser}"
12 12 $my = "${home}/my"
13 13 $dotfiles = "${my}/dotfiles"
14 14  
... ... @@ -17,5 +17,15 @@
17 17 require => File[$my]
18 18 }
19 19 }
  20 +```
  21 +
  22 +## Projects
  23 +
  24 +While you _can_ include projects one by one, sometimes you might just want
  25 +all of them.
  26 +You can do that easily with:
  27 +
  28 +```
  29 +include projects::all
20 30 ```