lint fix in report_processor
This commit is contained in:
parent
d95100a2cf
commit
994794e725
1 changed files with 6 additions and 4 deletions
|
@ -12,11 +12,13 @@ class puppetdb::master::report_processor (
|
|||
$puppet_conf_section = 'master'
|
||||
}
|
||||
|
||||
$puppetdb_ensure = $enable ? {
|
||||
true => present,
|
||||
default => absent,
|
||||
}
|
||||
|
||||
ini_subsetting { 'puppet.conf/reports/puppetdb':
|
||||
ensure => $enable ? {
|
||||
true => present,
|
||||
default => absent
|
||||
},
|
||||
ensure => $puppetdb_ensure,
|
||||
path => $puppet_conf,
|
||||
section => $puppet_conf_section,
|
||||
setting => 'reports',
|
||||
|
|
Loading…
Reference in a new issue