Skip to content

Commit

Permalink
Fixes #32160 - enable ansible content
Browse files Browse the repository at this point in the history
  • Loading branch information
jlsherrill authored and ehelms committed Apr 22, 2021
1 parent 85bcb81 commit 447cff8
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion manifests/init.pp
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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,
Expand Down Expand Up @@ -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':
Expand Down

0 comments on commit 447cff8

Please sign in to comment.