katello 3.16.0.rc4 → 3.16.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.
- checksums.yaml +4 -4
- data/app/controllers/katello/api/registry/registry_proxies_controller.rb +39 -23
- data/app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb +3 -3
- data/app/controllers/katello/api/v2/api_controller.rb +1 -0
- data/app/controllers/katello/api/v2/content_view_filters_controller.rb +5 -1
- data/app/controllers/katello/api/v2/content_view_versions_controller.rb +3 -0
- data/app/controllers/katello/api/v2/content_views_controller.rb +7 -0
- data/app/controllers/katello/api/v2/host_tracer_controller.rb +0 -5
- data/app/controllers/katello/api/v2/products_bulk_actions_controller.rb +15 -0
- data/app/controllers/katello/api/v2/repositories_controller.rb +10 -1
- data/app/controllers/katello/concerns/api/v2/associations_permission_check.rb +67 -0
- data/app/controllers/katello/concerns/hosts_controller_extensions.rb +11 -5
- data/app/helpers/katello/content_view_helper.rb +15 -0
- data/app/lib/actions/katello/capsule_content/refresh_repos.rb +5 -1
- data/app/lib/actions/katello/capsule_content/sync.rb +3 -6
- data/app/lib/actions/katello/capsule_content/sync_capsule.rb +31 -17
- data/app/lib/actions/katello/content_view/incremental_updates.rb +8 -1
- data/app/lib/actions/katello/content_view/presenters/incremental_updates_presenter.rb +2 -1
- data/app/lib/actions/katello/content_view/publish.rb +55 -16
- data/app/lib/actions/katello/content_view_version/incremental_update.rb +120 -26
- data/app/lib/actions/katello/host/attach_subscriptions.rb +5 -1
- data/app/lib/actions/katello/product/destroy.rb +25 -4
- data/app/lib/actions/katello/repository/destroy.rb +5 -1
- data/app/lib/actions/katello/repository/multi_clone_contents.rb +62 -0
- data/app/lib/actions/katello/repository/multi_clone_to_version.rb +30 -0
- data/app/lib/actions/katello/repository/sync.rb +35 -25
- data/app/lib/actions/katello/repository/update.rb +11 -16
- data/app/lib/actions/katello/repository/verify_checksum.rb +28 -0
- data/app/lib/actions/katello/sync_plan/run.rb +1 -1
- data/app/lib/actions/pulp/abstract_async_task.rb +1 -0
- data/app/lib/actions/pulp/consumer/sync_capsule.rb +8 -0
- data/app/lib/actions/pulp/orchestration/repository/sync.rb +2 -1
- data/app/lib/actions/pulp/repository/presenters/deb_presenter.rb +2 -2
- data/app/lib/actions/pulp/repository/sync.rb +2 -1
- data/app/lib/actions/pulp3/abstract_async_task.rb +62 -58
- data/app/lib/actions/pulp3/capsule_content/refresh_content_guard.rb +17 -0
- data/app/lib/actions/pulp3/capsule_content/sync.rb +3 -1
- data/app/lib/actions/pulp3/{ContentGuard → content_guard}/refresh.rb +0 -0
- data/app/lib/actions/pulp3/content_migration.rb +4 -0
- data/app/lib/actions/pulp3/orchestration/repository/copy_all_units.rb +2 -4
- data/app/lib/actions/pulp3/orchestration/repository/multi_copy_all_units.rb +36 -0
- data/app/lib/actions/pulp3/orchestration/repository/sync.rb +3 -1
- data/app/lib/actions/pulp3/orchestration/repository/trigger_update_repo_cert_guard.rb +22 -0
- data/app/lib/actions/pulp3/repository/copy_content.rb +0 -1
- data/app/lib/actions/pulp3/repository/multi_copy_content.rb +28 -0
- data/app/lib/actions/pulp3/repository/multi_copy_units.rb +55 -0
- data/app/lib/actions/pulp3/repository/presenters/content_unit_presenter.rb +1 -1
- data/app/lib/actions/pulp3/repository/presenters/repair_presenter.rb +85 -0
- data/app/lib/actions/pulp3/repository/repair.rb +29 -0
- data/app/lib/actions/pulp3/repository/save_version.rb +20 -8
- data/app/lib/actions/pulp3/repository/save_versions.rb +73 -0
- data/app/lib/actions/pulp3/repository/sync.rb +1 -1
- data/app/lib/actions/pulp3/repository/update_cv_repository_cert_guard.rb +6 -2
- data/app/lib/actions/pulp3/repository/upload_file.rb +1 -1
- data/app/lib/katello/concerns/base_template_scope_extensions.rb +4 -14
- data/app/lib/katello/errors.rb +1 -15
- data/app/lib/katello/resources/cdn.rb +3 -2
- data/app/lib/katello/util/cdn_var_substitutor.rb +9 -6
- data/app/models/katello/concerns/smart_proxy_extensions.rb +14 -3
- data/app/models/katello/content_view.rb +18 -6
- data/app/models/katello/content_view_erratum_filter.rb +13 -0
- data/app/models/katello/content_view_filter.rb +4 -0
- data/app/models/katello/content_view_module_stream_filter.rb +30 -3
- data/app/models/katello/content_view_package_filter.rb +1 -1
- data/app/models/katello/glue/pulp/repo.rb +1 -0
- data/app/models/katello/host/content_facet.rb +11 -5
- data/app/models/katello/module_stream.rb +1 -1
- data/app/models/katello/ping.rb +1 -3
- data/app/models/katello/repository.rb +16 -0
- data/app/models/setting/content.rb +3 -1
- data/app/presenters/katello/sync_status_presenter.rb +4 -2
- data/app/services/cert/certs.rb +10 -2
- data/app/services/katello/pulp/repository/yum.rb +2 -1
- data/app/services/katello/pulp3/api/core.rb +4 -0
- data/app/services/katello/pulp3/erratum.rb +3 -1
- data/app/services/katello/pulp3/migration.rb +9 -4
- data/app/services/katello/pulp3/migration_plan.rb +6 -6
- data/app/services/katello/pulp3/repository.rb +13 -5
- data/app/services/katello/pulp3/repository/yum.rb +246 -25
- data/app/services/katello/pulp3/repository_mirror.rb +7 -2
- data/app/services/katello/pulp3/smart_proxy_mirror_repository.rb +1 -1
- data/app/services/katello/pulp3/task.rb +100 -0
- data/app/services/katello/pulp3/task_group.rb +79 -0
- data/app/services/katello/smart_proxy_helper.rb +13 -16
- data/app/views/katello/api/v2/content_view_filters/base.json.rabl +4 -0
- data/config/routes/api/rhsm.rb +1 -0
- data/config/routes/api/v2.rb +2 -0
- data/db/migrate/20200709021250_add_original_modules_to_content_view_module_stream_filter.rb +5 -0
- data/db/migrate/20200721142707_remove_duplicate_katello_pools_index.rb +5 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/capsule-content/capsule-content.routes.js +1 -13
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-details.controller.js +17 -4
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/module-stream-filter-details.html +17 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/errata.routes.js +1 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/bulk/product-bulk-action.factory.js +1 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details.controller.js +6 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-details.html +7 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/repository.factory.js +1 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/products.controller.js +15 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/views/products.html +6 -0
- data/engines/bastion_katello/app/assets/stylesheets/bastion_katello/bastion_katello.scss +4 -0
- data/lib/katello/engine.rb +0 -1
- data/lib/katello/permission_creator.rb +2 -2
- data/lib/katello/plugin.rb +2 -1
- data/lib/katello/tasks/reports.rake +16 -0
- data/lib/katello/version.rb +1 -1
- data/webpack/redux/actions/RedHatRepositories/helpers.js +6 -6
- metadata +37 -14
- 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'}},
|
data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/products.controller.js
CHANGED
@@ -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 = [];
|
data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/views/products.html
CHANGED
@@ -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
|
data/lib/katello/engine.rb
CHANGED
@@ -154,7 +154,6 @@ module Katello
|
|
154
154
|
|
155
155
|
# Lib Extensions
|
156
156
|
::Foreman::Renderer::Scope::Variables::Base.include Katello::Concerns::RendererExtensions
|
157
|
-
::Foreman::Renderer::Scope::Base.include Katello::Concerns::BaseTemplateScopeExtensions
|
158
157
|
|
159
158
|
# Model extensions
|
160
159
|
::Environment.include Katello::Concerns::EnvironmentExtensions
|
@@ -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
|
},
|
data/lib/katello/plugin.rb
CHANGED
@@ -218,8 +218,9 @@ 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
|
222
|
+
extend_template_helpers Katello::Concerns::BaseTemplateScopeExtensions
|
223
|
+
|
223
224
|
register_global_js_file 'fills'
|
224
225
|
|
225
226
|
search_path_override("Katello") do |resource|
|
@@ -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"] }
|
data/lib/katello/version.rb
CHANGED
@@ -25,17 +25,17 @@ const recommendedRepositoriesRHEL = [
|
|
25
25
|
];
|
26
26
|
|
27
27
|
const recommendedRepositoriesSatTools = [
|
28
|
-
'satellite-tools-6.
|
29
|
-
'rhel-7-server-satellite-tools-6.
|
30
|
-
'rhel-6-server-satellite-tools-6.
|
31
|
-
'rhel-5-server-els-satellite-tools-6.
|
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.
|
38
|
-
'rhel-7-server-ansible-2.
|
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.
|
4
|
+
version: 3.16.1
|
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-
|
11
|
+
date: 2020-09-29 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.
|
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.
|
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.
|
307
|
+
version: 3.5.0
|
302
308
|
- - "<"
|
303
309
|
- !ruby/object:Gem::Version
|
304
|
-
version: 3.
|
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.
|
317
|
+
version: 3.5.0
|
312
318
|
- - "<"
|
313
319
|
- !ruby/object:Gem::Version
|
314
|
-
version: 3.
|
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.
|
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.
|
337
|
+
version: 0.2.0b6
|
332
338
|
- - "<"
|
333
339
|
- !ruby/object:Gem::Version
|
334
340
|
version: 0.3.0
|
@@ -699,6 +705,7 @@ files:
|
|
699
705
|
- app/controllers/katello/application_controller.rb
|
700
706
|
- app/controllers/katello/auto_complete_search_controller.rb
|
701
707
|
- app/controllers/katello/concerns/api/api_controller.rb
|
708
|
+
- app/controllers/katello/concerns/api/v2/associations_permission_check.rb
|
702
709
|
- app/controllers/katello/concerns/api/v2/bulk_hosts_extensions.rb
|
703
710
|
- app/controllers/katello/concerns/api/v2/content_overrides_controller.rb
|
704
711
|
- app/controllers/katello/concerns/api/v2/hostgroups_controller_extensions.rb
|
@@ -719,6 +726,7 @@ files:
|
|
719
726
|
- app/helpers/katello/concerns/dashboard_helper_extensions.rb
|
720
727
|
- app/helpers/katello/concerns/hosts_and_hostgroups_helper_extensions.rb
|
721
728
|
- app/helpers/katello/concerns/smart_proxy_helper_extensions.rb
|
729
|
+
- app/helpers/katello/content_view_helper.rb
|
722
730
|
- app/helpers/katello/errata_mailer_helper.rb
|
723
731
|
- app/helpers/katello/hosts_and_hostgroups_helper.rb
|
724
732
|
- app/helpers/katello/katello_url_helper.rb
|
@@ -881,6 +889,8 @@ files:
|
|
881
889
|
- app/lib/actions/katello/repository/index_package_groups.rb
|
882
890
|
- app/lib/actions/katello/repository/instance_update.rb
|
883
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
|
884
894
|
- app/lib/actions/katello/repository/purge_empty_content.rb
|
885
895
|
- app/lib/actions/katello/repository/refresh_repository.rb
|
886
896
|
- app/lib/actions/katello/repository/remove_content.rb
|
@@ -888,13 +898,13 @@ files:
|
|
888
898
|
- app/lib/actions/katello/repository/sync_hook.rb
|
889
899
|
- app/lib/actions/katello/repository/update.rb
|
890
900
|
- app/lib/actions/katello/repository/update_content_urls.rb
|
891
|
-
- app/lib/actions/katello/repository/update_cv_repo_cert_guard.rb
|
892
901
|
- app/lib/actions/katello/repository/update_http_proxy_details.rb
|
893
902
|
- app/lib/actions/katello/repository/update_metadata_sync.rb
|
894
903
|
- app/lib/actions/katello/repository/update_redhat_repository.rb
|
895
904
|
- app/lib/actions/katello/repository/upload_errata.rb
|
896
905
|
- app/lib/actions/katello/repository/upload_files.rb
|
897
906
|
- app/lib/actions/katello/repository/upload_package_group.rb
|
907
|
+
- app/lib/actions/katello/repository/verify_checksum.rb
|
898
908
|
- app/lib/actions/katello/repository_set/disable_repository.rb
|
899
909
|
- app/lib/actions/katello/repository_set/enable_repository.rb
|
900
910
|
- app/lib/actions/katello/repository_set/scan_cdn.rb
|
@@ -976,12 +986,13 @@ files:
|
|
976
986
|
- app/lib/actions/pulp/repository_group/create.rb
|
977
987
|
- app/lib/actions/pulp/repository_group/delete.rb
|
978
988
|
- app/lib/actions/pulp/repository_group/export.rb
|
979
|
-
- app/lib/actions/pulp3/ContentGuard/refresh.rb
|
980
989
|
- app/lib/actions/pulp3/abstract.rb
|
981
990
|
- app/lib/actions/pulp3/abstract_async_task.rb
|
982
991
|
- app/lib/actions/pulp3/capsule_content/generate_metadata.rb
|
992
|
+
- app/lib/actions/pulp3/capsule_content/refresh_content_guard.rb
|
983
993
|
- app/lib/actions/pulp3/capsule_content/refresh_distribution.rb
|
984
994
|
- app/lib/actions/pulp3/capsule_content/sync.rb
|
995
|
+
- app/lib/actions/pulp3/content_guard/refresh.rb
|
985
996
|
- app/lib/actions/pulp3/content_migration.rb
|
986
997
|
- app/lib/actions/pulp3/content_view/delete_repository_references.rb
|
987
998
|
- app/lib/actions/pulp3/import_migration.rb
|
@@ -991,10 +1002,12 @@ files:
|
|
991
1002
|
- app/lib/actions/pulp3/orchestration/repository/delete.rb
|
992
1003
|
- app/lib/actions/pulp3/orchestration/repository/generate_metadata.rb
|
993
1004
|
- app/lib/actions/pulp3/orchestration/repository/import_upload.rb
|
1005
|
+
- app/lib/actions/pulp3/orchestration/repository/multi_copy_all_units.rb
|
994
1006
|
- app/lib/actions/pulp3/orchestration/repository/refresh_if_needed.rb
|
995
1007
|
- app/lib/actions/pulp3/orchestration/repository/refresh_repos.rb
|
996
1008
|
- app/lib/actions/pulp3/orchestration/repository/remove_units.rb
|
997
1009
|
- app/lib/actions/pulp3/orchestration/repository/sync.rb
|
1010
|
+
- app/lib/actions/pulp3/orchestration/repository/trigger_update_repo_cert_guard.rb
|
998
1011
|
- app/lib/actions/pulp3/orchestration/repository/update.rb
|
999
1012
|
- app/lib/actions/pulp3/orchestration/repository/upload_content.rb
|
1000
1013
|
- app/lib/actions/pulp3/orphan_cleanup/delete_orphan_distributions.rb
|
@@ -1014,14 +1027,19 @@ files:
|
|
1014
1027
|
- app/lib/actions/pulp3/repository/delete_remote.rb
|
1015
1028
|
- app/lib/actions/pulp3/repository/delete_version.rb
|
1016
1029
|
- app/lib/actions/pulp3/repository/import_upload.rb
|
1030
|
+
- app/lib/actions/pulp3/repository/multi_copy_content.rb
|
1031
|
+
- app/lib/actions/pulp3/repository/multi_copy_units.rb
|
1017
1032
|
- app/lib/actions/pulp3/repository/presenters/abstract_sync_presenter.rb
|
1018
1033
|
- app/lib/actions/pulp3/repository/presenters/content_unit_presenter.rb
|
1034
|
+
- app/lib/actions/pulp3/repository/presenters/repair_presenter.rb
|
1019
1035
|
- app/lib/actions/pulp3/repository/refresh_distribution.rb
|
1020
1036
|
- app/lib/actions/pulp3/repository/remove_units.rb
|
1037
|
+
- app/lib/actions/pulp3/repository/repair.rb
|
1021
1038
|
- app/lib/actions/pulp3/repository/save_artifact.rb
|
1022
1039
|
- app/lib/actions/pulp3/repository/save_distribution_references.rb
|
1023
1040
|
- app/lib/actions/pulp3/repository/save_publication.rb
|
1024
1041
|
- app/lib/actions/pulp3/repository/save_version.rb
|
1042
|
+
- app/lib/actions/pulp3/repository/save_versions.rb
|
1025
1043
|
- app/lib/actions/pulp3/repository/sync.rb
|
1026
1044
|
- app/lib/actions/pulp3/repository/update_cv_repository_cert_guard.rb
|
1027
1045
|
- app/lib/actions/pulp3/repository/update_distributions.rb
|
@@ -1399,6 +1417,8 @@ files:
|
|
1399
1417
|
- app/services/katello/pulp3/smart_proxy_mirror_repository.rb
|
1400
1418
|
- app/services/katello/pulp3/smart_proxy_repository.rb
|
1401
1419
|
- app/services/katello/pulp3/srpm.rb
|
1420
|
+
- app/services/katello/pulp3/task.rb
|
1421
|
+
- app/services/katello/pulp3/task_group.rb
|
1402
1422
|
- app/services/katello/pulp3/yum_metadata_file.rb
|
1403
1423
|
- app/services/katello/puppet_class_importer_extensions.rb
|
1404
1424
|
- app/services/katello/pxe_files_downloader.rb
|
@@ -1985,6 +2005,8 @@ files:
|
|
1985
2005
|
- db/migrate/20200506163345_add_applicability_indicesto_katello_host_available_module_streams.rb
|
1986
2006
|
- db/migrate/20200511204005_create_katello_host_queue_elements.rb
|
1987
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
|
1988
2010
|
- db/seeds.d/101-locations.rb
|
1989
2011
|
- db/seeds.d/102-organizations.rb
|
1990
2012
|
- db/seeds.d/104-proxy.rb
|
@@ -4339,6 +4361,7 @@ files:
|
|
4339
4361
|
- lib/katello/tasks/receptor/extract_orgs.rake
|
4340
4362
|
- lib/katello/tasks/regenerate_ueber_certs.rake
|
4341
4363
|
- lib/katello/tasks/reimport.rake
|
4364
|
+
- lib/katello/tasks/reports.rake
|
4342
4365
|
- lib/katello/tasks/repository.rake
|
4343
4366
|
- lib/katello/tasks/reset.rake
|
4344
4367
|
- lib/katello/tasks/rubocop.rake
|
@@ -4872,9 +4895,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
4872
4895
|
version: '0'
|
4873
4896
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
4874
4897
|
requirements:
|
4875
|
-
- - "
|
4898
|
+
- - ">="
|
4876
4899
|
- !ruby/object:Gem::Version
|
4877
|
-
version:
|
4900
|
+
version: '0'
|
4878
4901
|
requirements: []
|
4879
4902
|
rubygems_version: 3.0.3
|
4880
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
|