File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 99 if $masterless {
1010 $puppet_conf_section = ' main'
1111 } else {
12- $puppet_conf_section = ' master '
12+ $puppet_conf_section = ' server '
1313 }
1414
1515 $puppetdb_ensure = $enable ? {
Original file line number Diff line number Diff line change 99 if $masterless {
1010 $puppet_conf_section = ' main'
1111 } else {
12- $puppet_conf_section = ' master '
12+ $puppet_conf_section = ' server '
1313 }
1414
1515 $storeconfigs_ensure = $enable ? {
Original file line number Diff line number Diff line change 2424 with (
2525 'ensure' => 'absent' ,
2626 'path' => '/etc/puppet/puppet.conf' ,
27- 'section' => 'master ' ,
27+ 'section' => 'server ' ,
2828 'setting' => 'reports' ,
2929 'subsetting' => 'puppetdb' ,
3030 'subsetting_separator' => ','
4444 with (
4545 'ensure' => 'present' ,
4646 'path' => '/etc/puppet/puppet.conf' ,
47- 'section' => 'master ' ,
47+ 'section' => 'server ' ,
4848 'setting' => 'reports' ,
4949 'subsetting' => 'puppetdb' ,
5050 'subsetting_separator' => ','
Original file line number Diff line number Diff line change 1212 end
1313
1414 let ( :param_ensure ) { params [ :enable ] ? 'present' : 'absent' }
15- let ( :puppet_conf_section ) { params [ :masterless ] ? 'main' : 'master ' }
15+ let ( :puppet_conf_section ) { params [ :masterless ] ? 'main' : 'server ' }
1616 let ( :puppet_conf ) { File . join ( Puppet [ :confdir ] , 'puppet.conf' ) }
1717
1818 context 'with default parameters' do
You can’t perform that action at this time.
0 commit comments