katello 3.16.0.rc5.1 → 3.16.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 (98) 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/host_tracer_controller.rb +8 -33
  5. data/app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb +11 -1
  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/applicability/hosts/bulk_generate.rb +6 -2
  11. data/app/lib/actions/katello/capsule_content/refresh_repos.rb +1 -1
  12. data/app/lib/actions/katello/capsule_content/sync.rb +3 -2
  13. data/app/lib/actions/katello/capsule_content/sync_capsule.rb +17 -3
  14. data/app/lib/actions/katello/content_view/incremental_updates.rb +3 -1
  15. data/app/lib/actions/katello/content_view/publish.rb +55 -16
  16. data/app/lib/actions/katello/content_view_version/incremental_update.rb +84 -53
  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 +64 -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/pulp/orchestration/repository/sync.rb +2 -1
  25. data/app/lib/actions/pulp/repository/sync.rb +2 -1
  26. data/app/lib/actions/pulp3/abstract_async_task.rb +63 -58
  27. data/app/lib/actions/pulp3/capsule_content/refresh_content_guard.rb +17 -0
  28. data/app/lib/actions/pulp3/capsule_content/sync.rb +3 -1
  29. data/app/lib/actions/pulp3/{ContentGuard → content_guard}/refresh.rb +0 -0
  30. data/app/lib/actions/pulp3/content_migration.rb +4 -0
  31. data/app/lib/actions/pulp3/content_view/delete_repository_references.rb +1 -1
  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/delete.rb +1 -1
  38. data/app/lib/actions/pulp3/repository/multi_copy_content.rb +28 -0
  39. data/app/lib/actions/pulp3/repository/multi_copy_units.rb +14 -7
  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_module_stream_filter.rb +19 -0
  55. data/app/models/katello/content_view_package_filter.rb +1 -1
  56. data/app/models/katello/glue/pulp/repo.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 +5 -0
  61. data/app/models/katello/root_repository.rb +5 -1
  62. data/app/models/setting/content.rb +1 -1
  63. data/app/services/cert/certs.rb +10 -2
  64. data/app/services/katello/host_trace_manager.rb +38 -0
  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 +4 -3
  68. data/app/services/katello/pulp3/migration_plan.rb +6 -6
  69. data/app/services/katello/pulp3/repository.rb +16 -8
  70. data/app/services/katello/pulp3/repository/yum.rb +234 -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 +85 -0
  75. data/app/services/katello/smart_proxy_helper.rb +13 -16
  76. data/config/routes/api/rhsm.rb +1 -0
  77. data/config/routes/api/v2.rb +2 -6
  78. data/config/routes/overrides.rb +4 -0
  79. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-traces-modal.controller.js +3 -4
  80. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/hosts/host-bulk-action.factory.js +2 -1
  81. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/bulk/product-bulk-action.factory.js +1 -0
  82. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details.controller.js +6 -0
  83. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-details.html +7 -1
  84. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html +1 -1
  85. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html +2 -2
  86. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/repository.factory.js +1 -0
  87. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/products.controller.js +15 -0
  88. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/views/products.html +6 -0
  89. data/lib/katello/permission_creator.rb +2 -2
  90. data/lib/katello/permissions/host_permissions.rb +1 -0
  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/reimport.rake +1 -1
  94. data/lib/katello/version.rb +1 -1
  95. data/webpack/redux/actions/RedHatRepositories/helpers.js +6 -6
  96. metadata +30 -13
  97. data/app/lib/actions/katello/repository/update_cv_repo_cert_guard.rb +0 -17
  98. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/hosts/host-traces-resolve.factory.js +0 -18
@@ -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
  },
@@ -27,6 +27,7 @@ Foreman::AccessControl.permission(:edit_hosts).actions.concat [
27
27
  'katello/api/v2/hosts_bulk_actions/environment_content_view',
28
28
  'katello/api/v2/hosts_bulk_actions/release_version',
29
29
  'katello/api/v2/hosts_bulk_actions/traces',
30
+ 'katello/api/v2/hosts_bulk_actions/resolve_traces',
30
31
  'katello/api/rhsm/candlepin_dynflow_proxy/upload_package_profile',
31
32
  'katello/api/rhsm/candlepin_dynflow_proxy/upload_profiles',
32
33
  'katello/api/rhsm/candlepin_dynflow_proxy/deb_package_profile',
@@ -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
 
@@ -12,7 +12,7 @@ namespace :katello do
12
12
  end
13
13
 
14
14
  desc "Reimports information from backend systems"
15
- task :reimport => ["environment", "katello:check_ping"] do
15
+ task :reimport => ["dynflow:client", "katello:check_ping"] do
16
16
  User.current = User.anonymous_admin #set a user for orchestration
17
17
  Dir.glob(Katello::Engine.root.to_s + '/app/models/katello/*.rb').each { |file| require file }
18
18
 
@@ -1,3 +1,3 @@
1
1
  module Katello
2
- VERSION = "3.16.0.rc5.1".freeze
2
+ VERSION = "3.16.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.1
4
+ version: 3.16.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-30 00:00:00.000000000 Z
11
+ date: 2020-12-02 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
@@ -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
@@ -1334,6 +1349,7 @@ files:
1334
1349
  - app/services/katello/event_daemon.rb
1335
1350
  - app/services/katello/event_monitor/poller_thread.rb
1336
1351
  - app/services/katello/event_queue.rb
1352
+ - app/services/katello/host_trace_manager.rb
1337
1353
  - app/services/katello/managed_content_medium_provider.rb
1338
1354
  - app/services/katello/product_content_finder.rb
1339
1355
  - app/services/katello/product_content_importer.rb
@@ -1402,6 +1418,8 @@ files:
1402
1418
  - app/services/katello/pulp3/smart_proxy_mirror_repository.rb
1403
1419
  - app/services/katello/pulp3/smart_proxy_repository.rb
1404
1420
  - app/services/katello/pulp3/srpm.rb
1421
+ - app/services/katello/pulp3/task.rb
1422
+ - app/services/katello/pulp3/task_group.rb
1405
1423
  - app/services/katello/pulp3/yum_metadata_file.rb
1406
1424
  - app/services/katello/puppet_class_importer_extensions.rb
1407
1425
  - app/services/katello/pxe_files_downloader.rb
@@ -4114,7 +4132,6 @@ files:
4114
4132
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/hosts/host-module-streams.factory.js
4115
4133
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/hosts/host-package.factory.js
4116
4134
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/hosts/host-subscription.factory.js
4117
- - engines/bastion_katello/app/assets/javascripts/bastion_katello/hosts/host-traces-resolve.factory.js
4118
4135
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/hosts/host-traces.factory.js
4119
4136
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/hosts/host.factory.js
4120
4137
  - engines/bastion_katello/app/assets/javascripts/bastion_katello/hosts/hosts.module.js
@@ -4878,9 +4895,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
4878
4895
  version: '0'
4879
4896
  required_rubygems_version: !ruby/object:Gem::Requirement
4880
4897
  requirements:
4881
- - - ">"
4898
+ - - ">="
4882
4899
  - !ruby/object:Gem::Version
4883
- version: 1.3.1
4900
+ version: '0'
4884
4901
  requirements: []
4885
4902
  rubygems_version: 3.0.3
4886
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
@@ -1,18 +0,0 @@
1
- /**
2
- * @ngdoc service
3
- * @name Bastion.hosts.factory:HostTracesResolve
4
- *
5
- * @requires BastionResource
6
- *
7
- * @description
8
- * Provides a BastionResource for resolving traces on a set of systems.
9
- */
10
- angular.module('Bastion.hosts').factory('HostTracesResolve',
11
- ['BastionResource', function (BastionResource) {
12
-
13
- return BastionResource('katello/api/v2/traces/:action', {}, {
14
- resolve: {method: 'PUT', isArray: true, params: {action: 'resolve'}}
15
- });
16
-
17
- }]
18
- );