From 90430d710f3c176ad6fbd9672a400c0f4466fcc8 Mon Sep 17 00:00:00 2001 From: Tim Meusel Date: Fri, 25 Oct 2024 14:25:28 +0200 Subject: [PATCH] Add support for PE This enables user to run foreman-proxy on a Puppet Enterprise primary. --- manifests/init.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifests/init.pp b/manifests/init.pp index ad86ce3f..49c67634 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -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,