Skip to content

Commit

Permalink
Add support for PE
Browse files Browse the repository at this point in the history
This enables user to run foreman-proxy on a Puppet Enterprise primary.
  • Loading branch information
bastelfreak committed Oct 25, 2024
1 parent 907200b commit 90430d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion manifests/init.pp
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@
Foreman_proxy::ListenOn $puppetca_listen_on = 'https',
Stdlib::Absolutepath $ssldir = $foreman_proxy::params::ssldir,
Stdlib::Absolutepath $puppetdir = $foreman_proxy::params::puppetdir,
String $puppet_group = 'puppet',
String $puppet_group = $facts['is_pe'] ? { true => 'pe-puppet', default => 'puppet', },
String $puppetca_provider = 'puppetca_hostname_whitelisting',
Stdlib::Absolutepath $autosignfile = $foreman_proxy::params::autosignfile,
Boolean $puppetca_sign_all = false,
Expand Down

0 comments on commit 90430d7

Please sign in to comment.