21 lines
541 B
Puppet
21 lines
541 B
Puppet
###### ######
|
|
## Configure R10k ##
|
|
###### ######
|
|
|
|
## This manifest requires the zack/R10k module
|
|
## Beware! (and good luck!)
|
|
|
|
class { 'r10k':
|
|
version => '1.5.1',
|
|
sources => {
|
|
'puppet' => {
|
|
#Edit remote to be your own control_repo
|
|
'remote' => 'https://github.com/npwalker/control-repo.git',
|
|
'basedir' => "${::settings::confdir}/environments",
|
|
'prefix' => false,
|
|
}
|
|
},
|
|
purgedirs => ["${::settings::confdir}/environments"],
|
|
manage_modulepath => false,
|
|
}
|