katello 3.16.0.rc5 → 3.16.1.2

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 (97) hide show
  1. checksums.yaml +4 -4
  2. data/app/controllers/katello/api/registry/registry_proxies_controller.rb +39 -23
  3. data/app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb +1 -1
  4. data/app/controllers/katello/api/v2/content_view_filters_controller.rb +5 -1
  5. data/app/controllers/katello/api/v2/host_tracer_controller.rb +0 -5
  6. data/app/controllers/katello/api/v2/products_bulk_actions_controller.rb +15 -0
  7. data/app/controllers/katello/api/v2/repositories_controller.rb +10 -1
  8. data/app/controllers/katello/concerns/hosts_controller_extensions.rb +11 -5
  9. data/app/helpers/katello/content_view_helper.rb +15 -0
  10. data/app/lib/actions/katello/capsule_content/refresh_repos.rb +1 -1
  11. data/app/lib/actions/katello/capsule_content/sync.rb +3 -2
  12. data/app/lib/actions/katello/capsule_content/sync_capsule.rb +17 -3
  13. data/app/lib/actions/katello/content_view/incremental_updates.rb +3 -1
  14. data/app/lib/actions/katello/content_view/publish.rb +55 -16
  15. data/app/lib/actions/katello/content_view_version/incremental_update.rb +84 -53
  16. data/app/lib/actions/katello/host/attach_subscriptions.rb +5 -1
  17. data/app/lib/actions/katello/product/destroy.rb +25 -4
  18. data/app/lib/actions/katello/repository/destroy.rb +5 -1
  19. data/app/lib/actions/katello/repository/multi_clone_contents.rb +62 -0
  20. data/app/lib/actions/katello/repository/multi_clone_to_version.rb +30 -0
  21. data/app/lib/actions/katello/repository/sync.rb +35 -25
  22. data/app/lib/actions/katello/repository/update.rb +11 -16
  23. data/app/lib/actions/katello/repository/verify_checksum.rb +28 -0
  24. data/app/lib/actions/katello/sync_plan/run.rb +1 -1
  25. data/app/lib/actions/pulp/orchestration/repository/sync.rb +2 -1
  26. data/app/lib/actions/pulp/repository/sync.rb +2 -1
  27. data/app/lib/actions/pulp3/abstract_async_task.rb +62 -58
  28. data/app/lib/actions/pulp3/capsule_content/refresh_content_guard.rb +17 -0
  29. data/app/lib/actions/pulp3/capsule_content/sync.rb +3 -1
  30. data/app/lib/actions/pulp3/{ContentGuard → content_guard}/refresh.rb +0 -0
  31. data/app/lib/actions/pulp3/content_migration.rb +4 -0
  32. data/app/lib/actions/pulp3/orchestration/repository/copy_all_units.rb +2 -4
  33. data/app/lib/actions/pulp3/orchestration/repository/multi_copy_all_units.rb +36 -0
  34. data/app/lib/actions/pulp3/orchestration/repository/sync.rb +3 -1
  35. data/app/lib/actions/pulp3/orchestration/repository/trigger_update_repo_cert_guard.rb +22 -0
  36. data/app/lib/actions/pulp3/repository/copy_content.rb +0 -1
  37. data/app/lib/actions/pulp3/repository/multi_copy_content.rb +28 -0
  38. data/app/lib/actions/pulp3/repository/multi_copy_units.rb +14 -7
  39. data/app/lib/actions/pulp3/repository/presenters/content_unit_presenter.rb +1 -1
  40. data/app/lib/actions/pulp3/repository/presenters/repair_presenter.rb +85 -0
  41. data/app/lib/actions/pulp3/repository/repair.rb +29 -0
  42. data/app/lib/actions/pulp3/repository/save_version.rb +20 -8
  43. data/app/lib/actions/pulp3/repository/save_versions.rb +47 -13
  44. data/app/lib/actions/pulp3/repository/sync.rb +1 -1
  45. data/app/lib/actions/pulp3/repository/update_cv_repository_cert_guard.rb +6 -2
  46. data/app/lib/actions/pulp3/repository/upload_file.rb +1 -1
  47. data/app/lib/katello/concerns/base_template_scope_extensions.rb +4 -0
  48. data/app/lib/katello/errors.rb +1 -15
  49. data/app/lib/katello/resources/cdn.rb +3 -2
  50. data/app/lib/katello/util/cdn_var_substitutor.rb +9 -6
  51. data/app/models/katello/concerns/smart_proxy_extensions.rb +14 -3
  52. data/app/models/katello/content_view.rb +18 -6
  53. data/app/models/katello/content_view_erratum_filter.rb +13 -0
  54. data/app/models/katello/content_view_filter.rb +4 -0
  55. data/app/models/katello/content_view_module_stream_filter.rb +30 -3
  56. data/app/models/katello/content_view_package_filter.rb +1 -1
  57. data/app/models/katello/host/content_facet.rb +1 -0
  58. data/app/models/katello/module_stream.rb +1 -1
  59. data/app/models/katello/ping.rb +1 -3
  60. data/app/models/katello/repository.rb +16 -0
  61. data/app/models/setting/content.rb +1 -1
  62. data/app/presenters/katello/sync_status_presenter.rb +4 -2
  63. data/app/services/cert/certs.rb +10 -2
  64. data/app/services/katello/pulp/repository/yum.rb +2 -1
  65. data/app/services/katello/pulp3/api/core.rb +4 -0
  66. data/app/services/katello/pulp3/erratum.rb +3 -1
  67. data/app/services/katello/pulp3/migration.rb +10 -5
  68. data/app/services/katello/pulp3/migration_plan.rb +6 -6
  69. data/app/services/katello/pulp3/repository.rb +13 -5
  70. data/app/services/katello/pulp3/repository/yum.rb +235 -35
  71. data/app/services/katello/pulp3/repository_mirror.rb +7 -2
  72. data/app/services/katello/pulp3/smart_proxy_mirror_repository.rb +1 -1
  73. data/app/services/katello/pulp3/task.rb +100 -0
  74. data/app/services/katello/pulp3/task_group.rb +79 -0
  75. data/app/services/katello/smart_proxy_helper.rb +13 -16
  76. data/app/views/katello/api/v2/content_view_filters/base.json.rabl +4 -0
  77. data/config/routes/api/rhsm.rb +1 -0
  78. data/config/routes/api/v2.rb +2 -0
  79. data/db/migrate/20200709021250_add_original_modules_to_content_view_module_stream_filter.rb +5 -0
  80. data/db/migrate/20200721142707_remove_duplicate_katello_pools_index.rb +5 -0
  81. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/capsule-content/capsule-content.routes.js +1 -13
  82. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-details.controller.js +17 -4
  83. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/module-stream-filter-details.html +17 -0
  84. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/bulk/product-bulk-action.factory.js +1 -0
  85. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details.controller.js +6 -0
  86. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-details.html +7 -1
  87. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/repository.factory.js +1 -0
  88. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/products.controller.js +15 -0
  89. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/views/products.html +6 -0
  90. data/lib/katello/permission_creator.rb +2 -2
  91. data/lib/katello/plugin.rb +0 -1
  92. data/lib/katello/tasks/pulp3_post_migration_check.rake +2 -1
  93. data/lib/katello/tasks/reports.rake +16 -0
  94. data/lib/katello/version.rb +1 -1
  95. data/webpack/redux/actions/RedHatRepositories/helpers.js +6 -6
  96. metadata +34 -14
  97. data/app/lib/actions/katello/repository/update_cv_repo_cert_guard.rb +0 -17
@@ -17,6 +17,7 @@ angular.module('Bastion.repositories').factory('Repository',
17
17
  {
18
18
  update: { method: 'PUT' },
19
19
  sync: { method: 'POST', params: { action: 'sync' } },
20
+ verifyChecksum: { method: 'POST', params: { action: 'verify_checksum' }},
20
21
  removePackages: { method: 'PUT', params: { action: 'remove_packages'}},
21
22
  removeContent: { method: 'PUT', params: { action: 'remove_content'}},
22
23
  autocomplete: {method: 'GET', isArray: true, params: {id: 'auto_complete_search'}},
@@ -101,6 +101,21 @@ angular.module('Bastion.products').controller('ProductsController',
101
101
  ProductBulkAction.syncProducts(getBulkParams(), success, bulkError);
102
102
  };
103
103
 
104
+ $scope.verifyChecksumProducts = function () {
105
+ var success;
106
+
107
+ success = function (task) {
108
+ var message = translate("Product verify checksum has been initiated in the background.");
109
+ Notification.setSuccessMessage(message, {
110
+ link: {
111
+ children: translate("Click to monitor task progress."),
112
+ href: translate("/foreman_tasks/tasks/%taskId").replace('%taskId', task.id)
113
+ }});
114
+ };
115
+
116
+ ProductBulkAction.verifyChecksumProducts(getBulkParams(), success, bulkError);
117
+ };
118
+
104
119
  $scope.goToDiscoveries = function () {
105
120
  nutupane.table.rows = [];
106
121
  nutupane.table.resource.results = [];
@@ -36,6 +36,12 @@
36
36
  </a>
37
37
  </li>
38
38
 
39
+ <li role="menuitem" ng-show="permitted('edit_products')" ng-class="{disabled: table.numSelected === 0}">
40
+ <a ng-click="verifyChecksumProducts()" disable-link="table.numSelected === 0" translate>
41
+ Verify Content Checksum
42
+ </a>
43
+ </li>
44
+
39
45
  <li role="menuitem" ng-show="permitted('edit_products')" ng-class="{disabled: table.numSelected === 0}">
40
46
  <a ng-click="openSyncPlanModal()" disable-link="table.numSelected === 0" translate>
41
47
  Manage Sync Plan
@@ -304,8 +304,8 @@ module Katello
304
304
  @plugin.permission :edit_products,
305
305
  {
306
306
  'katello/api/v2/products' => [:update],
307
- 'katello/api/v2/repositories' => [:update, :remove_content, :import_uploads, :upload_content, :republish],
308
- 'katello/api/v2/products_bulk_actions' => [:update_sync_plans, :update_http_proxy],
307
+ 'katello/api/v2/repositories' => [:update, :remove_content, :import_uploads, :upload_content, :republish, :verify_checksum],
308
+ 'katello/api/v2/products_bulk_actions' => [:update_sync_plans, :update_http_proxy, :verify_checksum_products],
309
309
  'katello/api/v2/content_uploads' => [:create, :update, :destroy],
310
310
  'katello/api/v2/organizations' => [:repo_discover, :cancel_repo_discover]
311
311
  },
@@ -218,7 +218,6 @@ Foreman::Plugin.register :katello do
218
218
  :parent => :lab_features_menu,
219
219
  :turbolinks => false
220
220
 
221
- allowed_template_helpers :subscription_manager_configuration_url, :repository_url
222
221
  extend_template_helpers Katello::KatelloUrlsHelper
223
222
  extend_template_helpers Katello::Concerns::BaseTemplateScopeExtensions
224
223
 
@@ -1,8 +1,9 @@
1
1
  require File.expand_path("../engine", File.dirname(__FILE__))
2
+ load "#{Katello::Engine.root}/lib/katello/tasks/common.rake"
2
3
 
3
4
  namespace :katello do
4
5
  desc "Runs a post Pulp3 migration check for supported content types."
5
- task :pulp3_post_migration_check => :environment do
6
+ task :pulp3_post_migration_check => [:environment, :disable_dynflow] do
6
7
  User.current = User.anonymous_admin
7
8
  repository_types = Katello::Pulp3::Migration::REPOSITORY_TYPES
8
9
 
@@ -0,0 +1,16 @@
1
+ load "#{Rails.root}/lib/tasks/reports.rake"
2
+
3
+ #define this task since its not in foreman 2.1
4
+ namespace :dynflow do
5
+ desc <<~END_DESC
6
+ Sets up the environment to act as a Dynflow client. By acting as a client, it still send tasks to be processed, but it cannot execute tasks.
7
+ END_DESC
8
+ task :client do
9
+ dynflow = ::Rails.application.dynflow
10
+ dynflow.config.remote = true
11
+ dynflow.initialize!
12
+ end
13
+ end
14
+
15
+ #Katello reports can generate a foreman task, so mark the task as a dynflow client
16
+ ["reports:daily", "reports:weekly", "reports:monthly"].each { |task| Rake::Task[task].enhance ["dynflow:client"] }
@@ -1,3 +1,3 @@
1
1
  module Katello
2
- VERSION = "3.16.0.rc5".freeze
2
+ VERSION = "3.16.1.2".freeze
3
3
  end
@@ -25,17 +25,17 @@ const recommendedRepositoriesRHEL = [
25
25
  ];
26
26
 
27
27
  const recommendedRepositoriesSatTools = [
28
- 'satellite-tools-6.7-for-rhel-8-x86_64-rpms',
29
- 'rhel-7-server-satellite-tools-6.7-rpms',
30
- 'rhel-6-server-satellite-tools-6.7-rpms',
31
- 'rhel-5-server-els-satellite-tools-6.7-rpms',
28
+ 'satellite-tools-6.8-for-rhel-8-x86_64-rpms',
29
+ 'rhel-7-server-satellite-tools-6.8-rpms',
30
+ 'rhel-6-server-satellite-tools-6.8-rpms',
31
+ 'rhel-5-server-els-satellite-tools-6.8-rpms',
32
32
  'rhel-7-server-satellite-maintenance-6-rpms',
33
33
  ];
34
34
 
35
35
  const recommendedRepositoriesMisc = [
36
36
  'rhel-server-rhscl-7-rpms',
37
- 'rhel-7-server-satellite-capsule-6.7-rpms',
38
- 'rhel-7-server-ansible-2.8-rpms',
37
+ 'rhel-7-server-satellite-capsule-6.8-rpms',
38
+ 'rhel-7-server-ansible-2.9-rpms',
39
39
  ];
40
40
 
41
41
  const recommendedRepositorySetLables = recommendedRepositoriesRHEL
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: 3.16.0.rc5
4
+ version: 3.16.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - N/A
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-07-21 00:00:00.000000000 Z
11
+ date: 2020-10-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -87,6 +87,9 @@ dependencies:
87
87
  - - ">="
88
88
  - !ruby/object:Gem::Version
89
89
  version: 0.14.1
90
+ - - "<="
91
+ - !ruby/object:Gem::Version
92
+ version: 2.0.2
90
93
  type: :runtime
91
94
  prerelease: false
92
95
  version_requirements: !ruby/object:Gem::Requirement
@@ -94,6 +97,9 @@ dependencies:
94
97
  - - ">="
95
98
  - !ruby/object:Gem::Version
96
99
  version: 0.14.1
100
+ - - "<="
101
+ - !ruby/object:Gem::Version
102
+ version: 2.0.2
97
103
  - !ruby/object:Gem::Dependency
98
104
  name: dynflow
99
105
  requirement: !ruby/object:Gem::Requirement
@@ -261,7 +267,7 @@ dependencies:
261
267
  version: '0.1'
262
268
  - - "<"
263
269
  - !ruby/object:Gem::Version
264
- version: 0.3.0
270
+ version: 0.2.0b15
265
271
  type: :runtime
266
272
  prerelease: false
267
273
  version_requirements: !ruby/object:Gem::Requirement
@@ -271,7 +277,7 @@ dependencies:
271
277
  version: '0.1'
272
278
  - - "<"
273
279
  - !ruby/object:Gem::Version
274
- version: 0.3.0
280
+ version: 0.2.0b15
275
281
  - !ruby/object:Gem::Dependency
276
282
  name: pulp_container_client
277
283
  requirement: !ruby/object:Gem::Requirement
@@ -298,27 +304,27 @@ dependencies:
298
304
  requirements:
299
305
  - - ">="
300
306
  - !ruby/object:Gem::Version
301
- version: 3.4.2
307
+ version: 3.5.0
302
308
  - - "<"
303
309
  - !ruby/object:Gem::Version
304
- version: 3.5.0
310
+ version: 3.6.0
305
311
  type: :runtime
306
312
  prerelease: false
307
313
  version_requirements: !ruby/object:Gem::Requirement
308
314
  requirements:
309
315
  - - ">="
310
316
  - !ruby/object:Gem::Version
311
- version: 3.4.2
317
+ version: 3.5.0
312
318
  - - "<"
313
319
  - !ruby/object:Gem::Version
314
- version: 3.5.0
320
+ version: 3.6.0
315
321
  - !ruby/object:Gem::Dependency
316
322
  name: pulp_2to3_migration_client
317
323
  requirement: !ruby/object:Gem::Requirement
318
324
  requirements:
319
325
  - - ">="
320
326
  - !ruby/object:Gem::Version
321
- version: 0.2.0b2
327
+ version: 0.2.0b6
322
328
  - - "<"
323
329
  - !ruby/object:Gem::Version
324
330
  version: 0.3.0
@@ -328,7 +334,7 @@ dependencies:
328
334
  requirements:
329
335
  - - ">="
330
336
  - !ruby/object:Gem::Version
331
- version: 0.2.0b2
337
+ version: 0.2.0b6
332
338
  - - "<"
333
339
  - !ruby/object:Gem::Version
334
340
  version: 0.3.0
@@ -720,6 +726,7 @@ files:
720
726
  - app/helpers/katello/concerns/dashboard_helper_extensions.rb
721
727
  - app/helpers/katello/concerns/hosts_and_hostgroups_helper_extensions.rb
722
728
  - app/helpers/katello/concerns/smart_proxy_helper_extensions.rb
729
+ - app/helpers/katello/content_view_helper.rb
723
730
  - app/helpers/katello/errata_mailer_helper.rb
724
731
  - app/helpers/katello/hosts_and_hostgroups_helper.rb
725
732
  - app/helpers/katello/katello_url_helper.rb
@@ -882,6 +889,8 @@ files:
882
889
  - app/lib/actions/katello/repository/index_package_groups.rb
883
890
  - app/lib/actions/katello/repository/instance_update.rb
884
891
  - app/lib/actions/katello/repository/metadata_generate.rb
892
+ - app/lib/actions/katello/repository/multi_clone_contents.rb
893
+ - app/lib/actions/katello/repository/multi_clone_to_version.rb
885
894
  - app/lib/actions/katello/repository/purge_empty_content.rb
886
895
  - app/lib/actions/katello/repository/refresh_repository.rb
887
896
  - app/lib/actions/katello/repository/remove_content.rb
@@ -889,13 +898,13 @@ files:
889
898
  - app/lib/actions/katello/repository/sync_hook.rb
890
899
  - app/lib/actions/katello/repository/update.rb
891
900
  - app/lib/actions/katello/repository/update_content_urls.rb
892
- - app/lib/actions/katello/repository/update_cv_repo_cert_guard.rb
893
901
  - app/lib/actions/katello/repository/update_http_proxy_details.rb
894
902
  - app/lib/actions/katello/repository/update_metadata_sync.rb
895
903
  - app/lib/actions/katello/repository/update_redhat_repository.rb
896
904
  - app/lib/actions/katello/repository/upload_errata.rb
897
905
  - app/lib/actions/katello/repository/upload_files.rb
898
906
  - app/lib/actions/katello/repository/upload_package_group.rb
907
+ - app/lib/actions/katello/repository/verify_checksum.rb
899
908
  - app/lib/actions/katello/repository_set/disable_repository.rb
900
909
  - app/lib/actions/katello/repository_set/enable_repository.rb
901
910
  - app/lib/actions/katello/repository_set/scan_cdn.rb
@@ -977,12 +986,13 @@ files:
977
986
  - app/lib/actions/pulp/repository_group/create.rb
978
987
  - app/lib/actions/pulp/repository_group/delete.rb
979
988
  - app/lib/actions/pulp/repository_group/export.rb
980
- - app/lib/actions/pulp3/ContentGuard/refresh.rb
981
989
  - app/lib/actions/pulp3/abstract.rb
982
990
  - app/lib/actions/pulp3/abstract_async_task.rb
983
991
  - app/lib/actions/pulp3/capsule_content/generate_metadata.rb
992
+ - app/lib/actions/pulp3/capsule_content/refresh_content_guard.rb
984
993
  - app/lib/actions/pulp3/capsule_content/refresh_distribution.rb
985
994
  - app/lib/actions/pulp3/capsule_content/sync.rb
995
+ - app/lib/actions/pulp3/content_guard/refresh.rb
986
996
  - app/lib/actions/pulp3/content_migration.rb
987
997
  - app/lib/actions/pulp3/content_view/delete_repository_references.rb
988
998
  - app/lib/actions/pulp3/import_migration.rb
@@ -992,10 +1002,12 @@ files:
992
1002
  - app/lib/actions/pulp3/orchestration/repository/delete.rb
993
1003
  - app/lib/actions/pulp3/orchestration/repository/generate_metadata.rb
994
1004
  - app/lib/actions/pulp3/orchestration/repository/import_upload.rb
1005
+ - app/lib/actions/pulp3/orchestration/repository/multi_copy_all_units.rb
995
1006
  - app/lib/actions/pulp3/orchestration/repository/refresh_if_needed.rb
996
1007
  - app/lib/actions/pulp3/orchestration/repository/refresh_repos.rb
997
1008
  - app/lib/actions/pulp3/orchestration/repository/remove_units.rb
998
1009
  - app/lib/actions/pulp3/orchestration/repository/sync.rb
1010
+ - app/lib/actions/pulp3/orchestration/repository/trigger_update_repo_cert_guard.rb
999
1011
  - app/lib/actions/pulp3/orchestration/repository/update.rb
1000
1012
  - app/lib/actions/pulp3/orchestration/repository/upload_content.rb
1001
1013
  - app/lib/actions/pulp3/orphan_cleanup/delete_orphan_distributions.rb
@@ -1015,11 +1027,14 @@ files:
1015
1027
  - app/lib/actions/pulp3/repository/delete_remote.rb
1016
1028
  - app/lib/actions/pulp3/repository/delete_version.rb
1017
1029
  - app/lib/actions/pulp3/repository/import_upload.rb
1030
+ - app/lib/actions/pulp3/repository/multi_copy_content.rb
1018
1031
  - app/lib/actions/pulp3/repository/multi_copy_units.rb
1019
1032
  - app/lib/actions/pulp3/repository/presenters/abstract_sync_presenter.rb
1020
1033
  - app/lib/actions/pulp3/repository/presenters/content_unit_presenter.rb
1034
+ - app/lib/actions/pulp3/repository/presenters/repair_presenter.rb
1021
1035
  - app/lib/actions/pulp3/repository/refresh_distribution.rb
1022
1036
  - app/lib/actions/pulp3/repository/remove_units.rb
1037
+ - app/lib/actions/pulp3/repository/repair.rb
1023
1038
  - app/lib/actions/pulp3/repository/save_artifact.rb
1024
1039
  - app/lib/actions/pulp3/repository/save_distribution_references.rb
1025
1040
  - app/lib/actions/pulp3/repository/save_publication.rb
@@ -1402,6 +1417,8 @@ files:
1402
1417
  - app/services/katello/pulp3/smart_proxy_mirror_repository.rb
1403
1418
  - app/services/katello/pulp3/smart_proxy_repository.rb
1404
1419
  - app/services/katello/pulp3/srpm.rb
1420
+ - app/services/katello/pulp3/task.rb
1421
+ - app/services/katello/pulp3/task_group.rb
1405
1422
  - app/services/katello/pulp3/yum_metadata_file.rb
1406
1423
  - app/services/katello/puppet_class_importer_extensions.rb
1407
1424
  - app/services/katello/pxe_files_downloader.rb
@@ -1988,6 +2005,8 @@ files:
1988
2005
  - db/migrate/20200506163345_add_applicability_indicesto_katello_host_available_module_streams.rb
1989
2006
  - db/migrate/20200511204005_create_katello_host_queue_elements.rb
1990
2007
  - db/migrate/20200526200422_encrypt_root_repository_upstream_password.rb
2008
+ - db/migrate/20200709021250_add_original_modules_to_content_view_module_stream_filter.rb
2009
+ - db/migrate/20200721142707_remove_duplicate_katello_pools_index.rb
1991
2010
  - db/seeds.d/101-locations.rb
1992
2011
  - db/seeds.d/102-organizations.rb
1993
2012
  - db/seeds.d/104-proxy.rb
@@ -4342,6 +4361,7 @@ files:
4342
4361
  - lib/katello/tasks/receptor/extract_orgs.rake
4343
4362
  - lib/katello/tasks/regenerate_ueber_certs.rake
4344
4363
  - lib/katello/tasks/reimport.rake
4364
+ - lib/katello/tasks/reports.rake
4345
4365
  - lib/katello/tasks/repository.rake
4346
4366
  - lib/katello/tasks/reset.rake
4347
4367
  - lib/katello/tasks/rubocop.rake
@@ -4875,9 +4895,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
4875
4895
  version: '0'
4876
4896
  required_rubygems_version: !ruby/object:Gem::Requirement
4877
4897
  requirements:
4878
- - - ">"
4898
+ - - ">="
4879
4899
  - !ruby/object:Gem::Version
4880
- version: 1.3.1
4900
+ version: '0'
4881
4901
  requirements: []
4882
4902
  rubygems_version: 3.0.3
4883
4903
  signing_key:
@@ -1,17 +0,0 @@
1
- module Actions
2
- module Katello
3
- module Repository
4
- class UpdateCVRepoCertGuard < Actions::Base
5
- include Actions::Katello::PulpSelector
6
-
7
- def plan(repository, smart_proxy)
8
- plan_optional_pulp_action([::Actions::Pulp3::Repository::UpdateCVRepositoryCertGuard], repository, smart_proxy)
9
- end
10
-
11
- def humanized_name
12
- _("Updating repository authentication configuration")
13
- end
14
- end
15
- end
16
- end
17
- end