Name | Last Update | Last Commit d470c4a6314 – Add git-flow and java | history |
---|---|---|---|
.. | |||
manifests | |||
README.md |
README.md
Personal Manifests
Per-user manifests live in modules/people/manifests/$login.pp
, where
$login
is a GitHub login. A simple user manifest example:
class people::jbarnette {
include emacs # requires emacs module in Puppetfile
include sparrow # requires sparrow module in Puppetfile
$home = "/Users/${::boxen_user}"
$my = "${home}/my"
$dotfiles = "${my}/dotfiles"
file { $my:
ensure => directory
}
repository { $dotfiles:
source => 'jbarnette/dotfiles',
require => File[$my]
}
}
Note that if your GitHub username contains dashes, you should replace them by underscores in both the manifest name and the class name.
Projects
While you can include projects one by one, sometimes you might just want all of them. You can do that easily with:
include projects::all