We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8f4c33f + e6a74e4 commit 1f07dc4Copy full SHA for 1f07dc4
lib/puppet/provider/package/puppetserver_gem.rb
@@ -1,4 +1,6 @@
1
-require 'rubygems/commands/list_command'
+unless Puppet::Util::Platform.jruby_fips?
2
+ require 'rubygems/commands/list_command'
3
+end
4
require 'stringio'
5
require 'uri'
6
@@ -15,6 +17,8 @@
15
17
has_feature :versionable, :install_options, :uninstall_options
16
18
19
confine :feature => :hocon
20
+ # see SERVER-2578
21
+ confine :fips_enabled => false
22
23
# Define the default provider package command name, as the parent 'gem' provider is targetable.
24
# Required by Puppet::Provider::Package::Targetable::resource_or_provider_command
0 commit comments