katello 4.2.0.1 → 4.2.1

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of katello might be problematic. Click here for more details.

Files changed (69) hide show
  1. checksums.yaml +4 -4
  2. data/app/controllers/katello/api/v2/content_uploads_controller.rb +6 -3
  3. data/app/controllers/katello/api/v2/generic_content_units_controller.rb +26 -0
  4. data/app/controllers/katello/api/v2/repositories_controller.rb +16 -4
  5. data/app/lib/actions/katello/capsule_content/sync_capsule.rb +6 -47
  6. data/app/lib/actions/katello/content_view/promote_to_environment.rb +2 -7
  7. data/app/lib/actions/katello/content_view/publish.rb +4 -2
  8. data/app/lib/actions/katello/repository/filtered_index_content.rb +5 -0
  9. data/app/lib/actions/katello/repository/import_upload.rb +5 -1
  10. data/app/lib/actions/katello/repository/index_content.rb +2 -1
  11. data/app/lib/actions/katello/repository/remove_content.rb +5 -1
  12. data/app/lib/actions/katello/repository/upload_files.rb +6 -1
  13. data/app/lib/actions/pulp3/orchestration/repository/import_upload.rb +2 -4
  14. data/app/lib/actions/pulp3/orchestration/repository/upload_content.rb +2 -7
  15. data/app/lib/actions/pulp3/repository/save_artifact.rb +4 -1
  16. data/app/lib/katello/concerns/base_template_scope_extensions.rb +1 -1
  17. data/app/lib/katello/util/errata.rb +3 -1
  18. data/app/models/katello/concerns/host_managed_extensions.rb +19 -0
  19. data/app/models/katello/concerns/pulp_database_unit.rb +32 -11
  20. data/app/models/katello/concerns/smart_proxy_extensions.rb +39 -4
  21. data/app/models/katello/content_view.rb +13 -0
  22. data/app/models/katello/content_view_repository.rb +1 -1
  23. data/app/models/katello/docker_tag.rb +2 -2
  24. data/app/models/katello/erratum.rb +13 -0
  25. data/app/models/katello/generic_content_unit.rb +4 -1
  26. data/app/models/katello/repository.rb +15 -7
  27. data/app/models/katello/root_repository.rb +9 -2
  28. data/app/models/katello/yum_metadata_file.rb +2 -2
  29. data/app/services/katello/applicability/applicable_content_helper.rb +4 -3
  30. data/app/services/katello/pulp/content.rb +1 -1
  31. data/app/services/katello/pulp3/content.rb +6 -2
  32. data/app/services/katello/pulp3/erratum.rb +12 -4
  33. data/app/services/katello/pulp3/generic_content_unit.rb +1 -1
  34. data/app/services/katello/pulp3/pulp_content_unit.rb +26 -1
  35. data/app/services/katello/pulp3/repository/apt.rb +16 -0
  36. data/app/services/katello/pulp3/repository/yum.rb +18 -19
  37. data/app/services/katello/pulp3/repository_mirror.rb +9 -1
  38. data/app/services/katello/repository_type.rb +8 -6
  39. data/app/services/katello/repository_type_manager.rb +25 -22
  40. data/app/views/katello/api/v2/generic_content_units/base.json.rabl +7 -0
  41. data/app/views/katello/api/v2/generic_content_units/compare.json.rabl +10 -0
  42. data/app/views/katello/api/v2/generic_content_units/index.json.rabl +7 -0
  43. data/app/views/katello/api/v2/generic_content_units/show.json.rabl +3 -0
  44. data/app/views/katello/api/v2/repositories/show.json.rabl +2 -1
  45. data/config/initializers/filter_parameters.rb +1 -0
  46. data/config/routes/api/v2.rb +12 -1
  47. data/db/migrate/20210512192745_fix_red_hat_root_repository_arch.rb +1 -1
  48. data/db/migrate/20210831161843_add_upstream_auth_token_to_root_repository.rb +5 -0
  49. data/db/seeds.d/111-upgrade_tasks.rb +3 -1
  50. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details-info.controller.js +3 -1
  51. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html +6 -0
  52. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html +11 -0
  53. data/lib/katello/permission_creator.rb +2 -0
  54. data/lib/katello/repository_types/deb.rb +1 -1
  55. data/lib/katello/repository_types/docker.rb +1 -1
  56. data/lib/katello/repository_types/file.rb +1 -1
  57. data/lib/katello/repository_types/ostree.rb +1 -1
  58. data/lib/katello/repository_types/python.rb +4 -1
  59. data/lib/katello/repository_types/yum.rb +1 -1
  60. data/lib/katello/tasks/reset.rake +6 -5
  61. data/lib/katello/tasks/test.rake +1 -2
  62. data/lib/katello/tasks/upgrades/4.1/{update_content_import_export_perms.rake → reupdate_content_import_export_perms.rake} +24 -1
  63. data/lib/katello/tasks/upgrades/4.2/remove_checksum_values.rake +17 -0
  64. data/lib/katello/version.rb +1 -1
  65. data/webpack/components/extensions/RegistrationCommands/__tests__/__snapshots__/ActivationKeys.test.js.snap +1 -0
  66. data/webpack/components/extensions/RegistrationCommands/__tests__/__snapshots__/Force.test.js.snap +1 -0
  67. data/webpack/components/extensions/RegistrationCommands/__tests__/__snapshots__/IgnoreSubmanErrors.test.js.snap +1 -0
  68. data/webpack/scenes/RedHatRepositories/components/SearchBar.js +2 -4
  69. metadata +15 -7
@@ -90,7 +90,7 @@ angular.module('Bastion.repositories').controller('RepositoryDetailsInfoControll
90
90
 
91
91
  $scope.save = function (repository, saveUpstreamAuth) {
92
92
  var deferred = $q.defer();
93
- var fields = ['upstream_password', 'upstream_username', 'ansible_collection_auth_token', 'ansible_collection_auth_url', 'ansible_collection_requirements'];
93
+ var fields = ['upstream_password', 'upstream_username', 'upstream_authentication_token', 'ansible_collection_auth_token', 'ansible_collection_auth_url', 'ansible_collection_requirements'];
94
94
  if (repository.content_type === 'yum' && typeof repository.ignore_srpms !== 'undefined') {
95
95
  if (repository['ignore_srpms']) {
96
96
  repository['ignorable_content'] = ["srpm"];
@@ -102,6 +102,7 @@ angular.module('Bastion.repositories').controller('RepositoryDetailsInfoControll
102
102
  if (!saveUpstreamAuth) {
103
103
  repository['upstream_username'] = null;
104
104
  repository['upstream_password'] = null;
105
+ repository['upstream_authentication_token'] = null;
105
106
  }
106
107
 
107
108
  if (!_.isEmpty(repository.commaTagsWhitelist)) {
@@ -200,6 +201,7 @@ angular.module('Bastion.repositories').controller('RepositoryDetailsInfoControll
200
201
  $scope.repository['upstream_password'] = null;
201
202
  $scope.repository['upstream_auth_exists'] = false;
202
203
  $scope.repository['upstream_username'] = null;
204
+ $scope.repository['upstream_authentication_token'] = null;
203
205
  $scope.save($scope.repository);
204
206
  };
205
207
 
@@ -161,6 +161,12 @@
161
161
  type="password"
162
162
  autocomplete="off"
163
163
  ng-model="repository.upstream_password"/>
164
+ <div translate>Upstream Authentication Token</div>
165
+ <input id="upstream_authentication_token"
166
+ name="upstream_authentication_token"
167
+ type="password"
168
+ autocomplete="off"
169
+ ng-model="repository.upstream_authentication_token"/>
164
170
  </dd>
165
171
  </span>
166
172
 
@@ -218,6 +218,17 @@
218
218
  </p>
219
219
  </div>
220
220
 
221
+ <div bst-form-group label="{{ 'Upstream Authentication Token' | translate }}" >
222
+ <input id="upstream_authentication_token"
223
+ name="upstream_authentication_token"
224
+ type="text"
225
+ autocomplete="off"
226
+ ng-model="repository.upstream_authentication_token"/>
227
+ <p class="help-block" translate>
228
+ Token of the upstream repository user for authentication. Leave empty if repository does not require authentication.
229
+ </p>
230
+ </div>
231
+
221
232
  <div bst-form-group label="{{ 'Download Policy' | translate }}" ng-if="repository.content_type === 'yum'">
222
233
  <select id="download_policy"
223
234
  name="download_policy"
@@ -257,9 +257,11 @@ module Katello
257
257
  'katello/api/v2/errata' => [:index, :show, :auto_complete_search, :compare],
258
258
  'katello/api/v2/module_streams' => [:index, :show, :auto_complete_search, :compare, :auto_complete_name],
259
259
  'katello/api/v2/ansible_collections' => [:index, :show, :auto_complete_search, :compare],
260
+ 'katello/api/v2/generic_content_units' => [:index, :show, :auto_complete_search, :compare],
260
261
  'katello/errata' => [:short_details, :auto_complete],
261
262
  'katello/packages' => [:details, :auto_complete],
262
263
  'katello/files' => [:auto_complete],
264
+ 'katello/generic' => [:auto_complete],
263
265
  'katello/repositories' => [:auto_complete_library, :repository_types],
264
266
  'katello/content_search' => [:index,
265
267
  :products,
@@ -5,7 +5,7 @@ Katello::RepositoryTypeManager.register(::Katello::Repository::DEB_TYPE) do
5
5
  pulp3_plugin 'deb'
6
6
  prevent_unneeded_metadata_publish
7
7
 
8
- default_managed_content_type Katello::Deb
8
+ default_managed_content_type Katello::Deb::CONTENT_TYPE
9
9
  content_type Katello::Deb,
10
10
  :pulp2_service_class => ::Katello::Pulp::Deb,
11
11
  :pulp3_service_class => ::Katello::Pulp3::Deb,
@@ -1,6 +1,6 @@
1
1
  Katello::RepositoryTypeManager.register(::Katello::Repository::DOCKER_TYPE) do
2
2
  service_class Katello::Pulp::Repository::Docker
3
- default_managed_content_type Katello::DockerManifest
3
+ default_managed_content_type Katello::DockerManifest::CONTENT_TYPE
4
4
  pulp3_service_class Katello::Pulp3::Repository::Docker
5
5
  pulp3_api_class Katello::Pulp3::Api::Docker
6
6
  pulp3_skip_publication true
@@ -10,5 +10,5 @@ Katello::RepositoryTypeManager.register(::Katello::Repository::FILE_TYPE) do
10
10
  :pulp3_service_class => ::Katello::Pulp3::FileUnit,
11
11
  :removable => true,
12
12
  :uploadable => true
13
- default_managed_content_type Katello::FileUnit
13
+ default_managed_content_type Katello::FileUnit::CONTENT_TYPE
14
14
  end
@@ -1,5 +1,5 @@
1
1
  Katello::RepositoryTypeManager.register(::Katello::Repository::OSTREE_TYPE) do
2
2
  service_class Katello::Pulp::Repository::Ostree
3
- default_managed_content_type Katello::OstreeBranch
3
+ default_managed_content_type Katello::OstreeBranch::CONTENT_TYPE
4
4
  content_type Katello::OstreeBranch, :pulp2_service_class => ::Katello::Pulp::OstreeBranch, :removable => true, :uploadable => true
5
5
  end
@@ -33,5 +33,8 @@ Katello::RepositoryTypeManager.register('python') do
33
33
  pulp3_model: PulpPythonClient::PythonPythonPackageContent,
34
34
  pulp3_service_class: Katello::Pulp3::GenericContentUnit,
35
35
  removable: true,
36
- uploadable: true
36
+ uploadable: true,
37
+ duplicates_allowed: false,
38
+ filename_key: :filename
39
+ default_managed_content_type :python_package
37
40
  end
@@ -5,7 +5,7 @@ Katello::RepositoryTypeManager.register(::Katello::Repository::YUM_TYPE) do
5
5
  pulp3_plugin 'rpm'
6
6
  prevent_unneeded_metadata_publish
7
7
 
8
- default_managed_content_type Katello::Rpm
8
+ default_managed_content_type Katello::Rpm::CONTENT_TYPE
9
9
  content_type Katello::Rpm,
10
10
  :priority => 1,
11
11
  :pulp2_service_class => ::Katello::Pulp::Rpm,
@@ -5,7 +5,7 @@ namespace :katello do
5
5
  service_start = "sudo /usr/bin/systemctl start %s"
6
6
 
7
7
  task :pulp do
8
- SERVICES = %w(rh-redis5-redis pulpcore-api pulpcore-resource-manager pulpcore-content).freeze
8
+ SERVICES = %w(rh-redis5-redis pulpcore-api pulpcore-content).freeze
9
9
 
10
10
  puts "\e[33mStarting Pulp3 Reset\e[0m\n\n"
11
11
 
@@ -15,9 +15,9 @@ namespace :katello do
15
15
  system("sudo runuser - postgres -c 'createdb pulpcore'")
16
16
 
17
17
  Dir.chdir("/tmp") do
18
- fail "\e[31mCannot migrate Pulp3 database\e[0m\n\n" unless system("sudo -u pulp PULP_SETTINGS='/etc/pulp/settings.py' DJANGO_SETTINGS_MODULE='pulpcore.app.settings' python3-django-admin migrate --no-input")
18
+ fail "\e[31mCannot migrate Pulp3 database\e[0m\n\n" unless system("sudo -u pulp PULP_SETTINGS='/etc/pulp/settings.py' DJANGO_SETTINGS_MODULE='pulpcore.app.settings' pulpcore-manager migrate --no-input")
19
19
  puts "\e[33mRecreating Admin User\e[0m\n\n"
20
- system("sudo -u pulp PULP_SETTINGS='/etc/pulp/settings.py' DJANGO_SETTINGS_MODULE='pulpcore.app.settings' python3-django-admin reset-admin-password --password password")
20
+ system("sudo -u pulp PULP_SETTINGS='/etc/pulp/settings.py' DJANGO_SETTINGS_MODULE='pulpcore.app.settings' pulpcore-manager reset-admin-password --password password")
21
21
  end
22
22
 
23
23
  SERVICES.each { |s| system(service_start.gsub("%s", s)) }
@@ -38,7 +38,7 @@ namespace :katello do
38
38
  end
39
39
  end
40
40
 
41
- task :reset_default_smart_proxy do
41
+ task :reset_default_smart_proxy => :environment do
42
42
  User.current = User.anonymous_admin
43
43
  hostname = Socket.gethostname.chomp
44
44
  SmartProxy.where(name: hostname, url: "https://#{hostname}:9090").first_or_create!
@@ -54,7 +54,8 @@ namespace :katello do
54
54
  ENV['SEED_ADMIN_PASSWORD'] ||= 'changeme'
55
55
  ENV['SEED_ORGANIZATION'] ||= 'Default Organization'
56
56
  ENV['SEED_LOCATION'] ||= 'Default Location'
57
- Rake::Task['katello:reset_backends'].invoke
57
+ # Rake::Task['katello:reset_backends'].invoke
58
+ ENV['RAILS_ENV'] = 'development'
58
59
  Rake::Task['db:drop'].invoke
59
60
  Rake::Task['db:create'].invoke
60
61
 
@@ -155,8 +155,7 @@ namespace :test do
155
155
  test_task = Rake::TestTask.new('katello_services_test_task') do |t|
156
156
  t.libs << ["test", "#{Katello::Engine.root}/test"]
157
157
  t.test_files = [
158
- "#{Katello::Engine.root}/test/services/katello/pulp3/**/*_test.rb",
159
- "#{Katello::Engine.root}/test/actions/pulp3/**/*_test.rb"
158
+ "#{Katello::Engine.root}/test/**/pulp3/**/*_test.rb"
160
159
  ]
161
160
  t.verbose = true
162
161
  t.warning = false
@@ -2,9 +2,29 @@ namespace :katello do
2
2
  namespace :upgrades do
3
3
  namespace '4.1' do
4
4
  desc "Update for content import/export permissions."
5
- task :update_content_import_export_perms => ['environment'] do
5
+ task :reupdate_content_import_export_perms => ['environment'] do
6
6
  User.current = User.anonymous_api_admin
7
7
 
8
+ def deduplicate_filters(perm)
9
+ # This method makes sure that the perms [import_content, export_content]
10
+ # are not duplicated in this role
11
+ # This case used to occur if this upgrade script did not run
12
+ # and the user created a role with
13
+ # import_library_content, export_library_content, import_content, export_content
14
+ # After running this task the output used to be
15
+ # [import_content, import_content, export_content, export_content]
16
+ # This method just ensures that those get cleaned up.
17
+
18
+ filtering_map = Filtering.where(permission_id: Permission.where(name: [perm]))
19
+ .order(:id)
20
+ .group_by(&:filter_id)
21
+ .select { |_, value| value.length > 1 }
22
+ filtering_map.values.each do |filterings|
23
+ sliced = filterings[0...-1] # keep the last filtering and destroy the rest
24
+ sliced.each(&:destroy)
25
+ end
26
+ end
27
+
8
28
  permission_map = {
9
29
  Permission.find_by(name: :export_library_content) => Permission.find_by(name: :export_content),
10
30
  Permission.find_by(name: :import_library_content) => Permission.find_by(name: :import_content)
@@ -17,6 +37,9 @@ namespace :katello do
17
37
  names = permission_map.keys.compact.map(&:name)
18
38
  Permission.where(:name => names).destroy_all if names.any?
19
39
 
40
+ deduplicate_filters('import_content')
41
+ deduplicate_filters('export_content')
42
+
20
43
  export_content_views = Permission.find_by_name(:export_content_views)
21
44
  next if export_content_views.blank?
22
45
 
@@ -0,0 +1,17 @@
1
+ namespace :katello do
2
+ namespace :upgrades do
3
+ namespace '4.2' do
4
+ desc "Removed orphaned pools and correct org+subscription mismatch"
5
+ task :remove_checksum_values => ["environment"] do
6
+ api = Katello::Pulp3::Api::Yum.new(SmartProxy.pulp_primary)
7
+ repos = Katello::Pulp3::Api::Core.fetch_from_list do |page_opts|
8
+ api.repositories_api.list(page_opts)
9
+ end
10
+
11
+ repos.each do |repo|
12
+ api.repositories_api.partial_update(repo.pulp_href, {metadata_checksum_type: nil, package_checksum_type: nil})
13
+ end
14
+ end
15
+ end
16
+ end
17
+ end
@@ -1,3 +1,3 @@
1
1
  module Katello
2
- VERSION = "4.2.0.1".freeze
2
+ VERSION = "4.2.1".freeze
3
3
  end
@@ -48,6 +48,7 @@ exports[`ActivationKeys renders 1`] = `
48
48
  onTypeaheadInputChanged={null}
49
49
  ouiaSafe={true}
50
50
  placeholderText="No Activation keys to select"
51
+ position="left"
51
52
  removeSelectionAriaLabel="Remove"
52
53
  selections={Array []}
53
54
  toggleAriaLabel="Options menu"
@@ -20,6 +20,7 @@ exports[`Force renders 1`] = `
20
20
  </span>
21
21
  }
22
22
  onChange={[Function]}
23
+ ouiaSafe={true}
23
24
  />
24
25
  </FormGroup>
25
26
  `;
@@ -20,6 +20,7 @@ exports[`IgnoreSubmanErrors renders 1`] = `
20
20
  </span>
21
21
  }
22
22
  onChange={[Function]}
23
+ ouiaSafe={true}
23
24
  />
24
25
  </FormGroup>
25
26
  `;
@@ -6,10 +6,8 @@ import PropTypes from 'prop-types';
6
6
  import { Form, FormGroup } from 'react-bootstrap';
7
7
  import { translate as __ } from 'foremanReact/common/I18n';
8
8
 
9
- import { selectOrganizationProducts }
10
- from '../../../redux/OrganizationProducts/OrganizationProductsSelectors';
11
- import { loadOrganizationProducts }
12
- from '../../../redux/OrganizationProducts/OrganizationProductsActions';
9
+ import { selectOrganizationProducts } from '../../../redux/OrganizationProducts/OrganizationProductsSelectors';
10
+ import { loadOrganizationProducts } from '../../../redux/OrganizationProducts/OrganizationProductsActions';
13
11
 
14
12
  import { loadEnabledRepos } from '../../../redux/actions/RedHatRepositories/enabled';
15
13
  import { loadRepositorySets } from '../../../redux/actions/RedHatRepositories/sets';
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: katello
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.2.0.1
4
+ version: 4.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - N/A
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-10-06 00:00:00.000000000 Z
11
+ date: 2021-11-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -752,6 +752,7 @@ files:
752
752
  - app/controllers/katello/api/v2/environments_controller.rb
753
753
  - app/controllers/katello/api/v2/errata_controller.rb
754
754
  - app/controllers/katello/api/v2/file_units_controller.rb
755
+ - app/controllers/katello/api/v2/generic_content_units_controller.rb
755
756
  - app/controllers/katello/api/v2/host_autocomplete_controller.rb
756
757
  - app/controllers/katello/api/v2/host_collections_controller.rb
757
758
  - app/controllers/katello/api/v2/host_contents_controller.rb
@@ -1663,6 +1664,10 @@ files:
1663
1664
  - app/views/katello/api/v2/file_units/compare.json.rabl
1664
1665
  - app/views/katello/api/v2/file_units/index.json.rabl
1665
1666
  - app/views/katello/api/v2/file_units/show.json.rabl
1667
+ - app/views/katello/api/v2/generic_content_units/base.json.rabl
1668
+ - app/views/katello/api/v2/generic_content_units/compare.json.rabl
1669
+ - app/views/katello/api/v2/generic_content_units/index.json.rabl
1670
+ - app/views/katello/api/v2/generic_content_units/show.json.rabl
1666
1671
  - app/views/katello/api/v2/gpg_keys/index.json.rabl
1667
1672
  - app/views/katello/api/v2/gpg_keys/show.json.rabl
1668
1673
  - app/views/katello/api/v2/host_collection_errata/index.json.rabl
@@ -1821,6 +1826,7 @@ files:
1821
1826
  - ca/redhat-uep.pem
1822
1827
  - config/compass.rb
1823
1828
  - config/initializers/active_record.rb
1829
+ - config/initializers/filter_parameters.rb
1824
1830
  - config/initializers/inflections.rb
1825
1831
  - config/initializers/mime_types.rb
1826
1832
  - config/initializers/monkeys.rb
@@ -2148,6 +2154,7 @@ files:
2148
2154
  - db/migrate/20210714140440_remove_repo_export_permission.rb
2149
2155
  - db/migrate/20210721163730_change_gpg_keys_to_content_credentials.rb
2150
2156
  - db/migrate/20210728130748_create_function_deb_version_cmp.rb
2157
+ - db/migrate/20210831161843_add_upstream_auth_token_to_root_repository.rb
2151
2158
  - db/seeds.d/101-locations.rb
2152
2159
  - db/seeds.d/102-organizations.rb
2153
2160
  - db/seeds.d/104-proxy.rb
@@ -4481,8 +4488,9 @@ files:
4481
4488
  - lib/katello/tasks/upgrade_check.rake
4482
4489
  - lib/katello/tasks/upgrades/4.0/remove_ostree_puppet_content.rake
4483
4490
  - lib/katello/tasks/upgrades/4.1/fix_invalid_pools.rake
4491
+ - lib/katello/tasks/upgrades/4.1/reupdate_content_import_export_perms.rake
4484
4492
  - lib/katello/tasks/upgrades/4.1/sync_noarch_content.rake
4485
- - lib/katello/tasks/upgrades/4.1/update_content_import_export_perms.rake
4493
+ - lib/katello/tasks/upgrades/4.2/remove_checksum_values.rake
4486
4494
  - lib/katello/tasks/virt_who_report.rake
4487
4495
  - lib/katello/url_constrained_cookie_store.rb
4488
4496
  - lib/katello/version.rb
@@ -5128,7 +5136,7 @@ homepage: http://www.katello.org
5128
5136
  licenses:
5129
5137
  - GPL-2.0
5130
5138
  metadata: {}
5131
- post_install_message:
5139
+ post_install_message:
5132
5140
  rdoc_options: []
5133
5141
  require_paths:
5134
5142
  - lib
@@ -5143,8 +5151,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
5143
5151
  - !ruby/object:Gem::Version
5144
5152
  version: '0'
5145
5153
  requirements: []
5146
- rubygems_version: 3.1.6
5147
- signing_key:
5154
+ rubygems_version: 3.2.22
5155
+ signing_key:
5148
5156
  specification_version: 4
5149
5157
  summary: Content and Subscription Management plugin for Foreman
5150
5158
  test_files: []