From 447cff81db66c6b66315a1dc5661cbe57f891539 Mon Sep 17 00:00:00 2001 From: Justin Sherrill Date: Tue, 20 Apr 2021 09:36:02 -0400 Subject: [PATCH] Fixes #32160 - enable ansible content --- manifests/init.pp | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/manifests/init.pp b/manifests/init.pp index a6dfcee6..e003323d 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -12,6 +12,8 @@ # # $enable_deb:: Enable debian content plugin # +# $enable_ansible:: Enable ansible content plugin +# # $enable_katello_agent:: Enable katello-agent for remote yum actions # # $pulpcore_mirror:: Deploy Pulp to be used as a mirror @@ -105,7 +107,7 @@ Boolean $enable_file = true, Boolean $enable_docker = true, Boolean $enable_deb = true, - + Boolean $enable_ansible = true, Boolean $enable_katello_agent = false, Boolean $pulpcore_manage_postgresql = true, @@ -280,6 +282,10 @@ use_pulp2_content_route => true, } } + if $enable_ansible { + class { 'pulpcore::plugin::ansible': + } + } include pulpcore::plugin::certguard # Required to be present by Katello when syncing a content proxy class { 'foreman_proxy::plugin::pulp':