Skip to content

Commit 7e2be09

Browse files
techsk8ekohl
authored andcommitted
add posibility to manage terminus package
1 parent e55808c commit 7e2be09

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

manifests/server/puppetdb.pp

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,17 +23,23 @@
2323
#
2424
# @param soft_write_failure
2525
# Whether to enable soft write failure
26+
#
27+
# @param terminus_package
28+
# The PuppetDB terminus package
29+
#
2630
class puppet::server::puppetdb (
2731
Stdlib::Host $server = undef,
2832
Stdlib::Port $port = 8081,
2933
Boolean $soft_write_failure = false,
34+
Optional[String[1]] $terminus_package = undef,
3035
) {
3136
class { 'puppetdb::master::config':
3237
puppetdb_server => $server,
3338
puppetdb_port => $port,
3439
puppetdb_soft_write_failure => $soft_write_failure,
3540
manage_storeconfigs => false,
3641
restart_puppet => false,
42+
terminus_package => $terminus_package,
3743
}
3844
Class['puppetdb::master::puppetdb_conf'] ~> Class['puppet::server::service']
3945
}

0 commit comments

Comments
 (0)