katello 3.18.0.rc2 → 3.18.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 (144) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/stylesheets/katello/katello.scss +0 -72
  3. data/app/controllers/katello/api/v2/api_controller.rb +1 -2
  4. data/app/controllers/katello/api/v2/capsule_content_controller.rb +2 -2
  5. data/app/controllers/katello/api/v2/content_export_incrementals_controller.rb +98 -0
  6. data/app/controllers/katello/api/v2/content_exports_controller.rb +84 -0
  7. data/app/controllers/katello/api/v2/content_imports_controller.rb +59 -0
  8. data/app/controllers/katello/api/v2/content_view_filters_controller.rb +1 -1
  9. data/app/controllers/katello/api/v2/content_view_versions_controller.rb +56 -94
  10. data/app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb +2 -1
  11. data/app/controllers/katello/api/v2/repositories_controller.rb +2 -0
  12. data/app/controllers/katello/concerns/api/v2/authorization.rb +14 -1
  13. data/app/lib/actions/katello/applicability/hosts/bulk_generate.rb +6 -2
  14. data/app/lib/actions/katello/capsule_content/sync.rb +1 -1
  15. data/app/lib/actions/katello/capsule_content/sync_capsule.rb +7 -2
  16. data/app/lib/actions/katello/content_view/promote_to_environment.rb +1 -1
  17. data/app/lib/actions/katello/content_view/publish.rb +1 -1
  18. data/app/lib/actions/katello/content_view_version/import.rb +2 -1
  19. data/app/lib/actions/katello/content_view_version/import_library.rb +17 -0
  20. data/app/lib/actions/katello/content_view_version/incremental_update.rb +19 -3
  21. data/app/lib/actions/katello/host/update_system_purpose.rb +1 -1
  22. data/app/lib/actions/katello/host/upload_package_profile.rb +1 -1
  23. data/app/lib/actions/katello/host/upload_profiles.rb +1 -1
  24. data/app/lib/actions/middleware/record_smart_proxy_sync_history.rb +24 -4
  25. data/app/lib/actions/pulp3/content_migration.rb +10 -0
  26. data/app/lib/actions/pulp3/content_migration_presenter.rb +59 -0
  27. data/app/lib/actions/pulp3/content_migration_reset.rb +22 -0
  28. data/app/lib/actions/pulp3/content_view/delete_repository_references.rb +1 -1
  29. data/app/lib/actions/pulp3/content_view_version/export.rb +3 -2
  30. data/app/lib/actions/pulp3/import_migration.rb +6 -1
  31. data/app/lib/actions/pulp3/orchestration/content_view_version/copy_version_units_to_library.rb +2 -1
  32. data/app/lib/actions/pulp3/orchestration/content_view_version/export.rb +17 -13
  33. data/app/lib/actions/pulp3/orchestration/content_view_version/export_library.rb +60 -0
  34. data/app/lib/actions/pulp3/orchestration/content_view_version/import.rb +0 -4
  35. data/app/lib/actions/pulp3/orchestration/repository/import_upload.rb +16 -3
  36. data/app/lib/actions/pulp3/repository/copy_content.rb +1 -1
  37. data/app/lib/actions/pulp3/repository/delete.rb +1 -1
  38. data/app/lib/actions/pulp3/repository/save_version.rb +1 -1
  39. data/app/lib/actions/pulp3/repository/upload_tag.rb +18 -0
  40. data/app/models/katello/authorization/content_view_version.rb +25 -2
  41. data/app/models/katello/authorization/content_view_version_export_history.rb +1 -1
  42. data/app/models/katello/authorization/organization.rb +8 -0
  43. data/app/models/katello/concerns/operatingsystem_extensions.rb +2 -0
  44. data/app/models/katello/concerns/pulp_database_unit.rb +19 -0
  45. data/app/models/katello/concerns/redhat_extensions.rb +2 -2
  46. data/app/models/katello/concerns/smart_proxy_extensions.rb +7 -5
  47. data/app/models/katello/content_migration_progress.rb +4 -0
  48. data/app/models/katello/content_view.rb +5 -0
  49. data/app/models/katello/content_view_history.rb +2 -1
  50. data/app/models/katello/content_view_package_filter.rb +1 -1
  51. data/app/models/katello/content_view_version_export_history.rb +6 -1
  52. data/app/models/katello/file_unit.rb +4 -0
  53. data/app/models/katello/host/subscription_facet.rb +4 -0
  54. data/app/models/katello/repository.rb +7 -0
  55. data/app/models/katello/subscription_status.rb +3 -2
  56. data/app/services/katello/applicability/applicable_content_helper.rb +44 -15
  57. data/app/services/katello/pulp3/api/docker.rb +4 -0
  58. data/app/services/katello/pulp3/content_view_version/export.rb +63 -5
  59. data/app/services/katello/pulp3/content_view_version/import.rb +40 -0
  60. data/app/services/katello/pulp3/content_view_version/import_export_common.rb +0 -16
  61. data/app/services/katello/pulp3/content_view_version/import_validator.rb +26 -49
  62. data/app/services/katello/pulp3/docker_manifest.rb +1 -0
  63. data/app/services/katello/pulp3/docker_tag.rb +1 -0
  64. data/app/services/katello/pulp3/erratum.rb +2 -1
  65. data/app/services/katello/pulp3/migration.rb +95 -12
  66. data/app/services/katello/pulp3/migration_plan.rb +2 -2
  67. data/app/services/katello/pulp3/migration_switchover.rb +21 -5
  68. data/app/services/katello/pulp3/repository.rb +10 -5
  69. data/app/services/katello/pulp3/repository/docker.rb +5 -0
  70. data/app/services/katello/pulp3/repository/yum.rb +23 -8
  71. data/app/services/katello/pulp3/task.rb +4 -0
  72. data/app/services/katello/pulp3/task_group.rb +4 -0
  73. data/app/views/katello/api/v2/content_views/show.json.rabl +6 -0
  74. data/app/views/katello/layouts/react.html.erb +3 -2
  75. data/app/views/katello/sync_management/_products.html.erb +1 -1
  76. data/app/views/overrides/activation_keys/_host_tab_pane.html.erb +1 -5
  77. data/config/routes/api/v2.rb +23 -3
  78. data/db/migrate/20150930183738_migrate_content_hosts.rb +1 -1
  79. data/db/migrate/20200514092553_move_katello_fields_from_hostgroups.katello.rb +5 -2
  80. data/db/migrate/20201119211133_pulp3_migration_progress.rb +9 -0
  81. data/db/migrate/20210201165835_add_migration_missing_content.rb +12 -0
  82. data/engines/bastion/app/assets/javascripts/bastion/auth/authorization.service.js +1 -1
  83. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/common/views/katello-agent-notice.html +1 -1
  84. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-system-purpose-modal.html +35 -40
  85. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/register-client.html +1 -1
  86. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion-activation-keys.controller.js +8 -3
  87. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion-content-hosts.controller.js +9 -3
  88. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details.html +1 -1
  89. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-publish.html +4 -0
  90. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/bastion_katello.pot +78 -7
  91. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/de.po +17 -20
  92. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/es.po +17 -24
  93. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/fr.po +1292 -1170
  94. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/it.po +17 -20
  95. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ja.po +858 -807
  96. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ko.po +18 -19
  97. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/pt_BR.po +17 -24
  98. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ru.po +17 -18
  99. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/zh_CN.po +986 -971
  100. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/zh_TW.po +19 -20
  101. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/translations.js +9 -9
  102. data/lib/katello/permission_creator.rb +23 -3
  103. data/lib/katello/tasks/delete_orphaned_content.rake +1 -3
  104. data/lib/katello/tasks/pulp3_content_switchover.rake +3 -1
  105. data/lib/katello/tasks/pulp3_migration.rake +25 -6
  106. data/lib/katello/tasks/pulp3_migration_abort.rake +7 -2
  107. data/lib/katello/tasks/pulp3_migration_approve_corrupted.rake +16 -0
  108. data/lib/katello/tasks/pulp3_migration_reset.rake +26 -0
  109. data/lib/katello/tasks/pulp3_migration_stats.rake +61 -8
  110. data/lib/katello/tasks/pulp3_post_migration_check.rake +1 -3
  111. data/lib/katello/tasks/receptor/extract_orgs.rake +1 -1
  112. data/lib/katello/tasks/reports.rake +4 -1
  113. data/lib/katello/tasks/repository.rake +3 -5
  114. data/lib/katello/version.rb +1 -1
  115. data/locale/action_names.rb +51 -51
  116. data/locale/bn/katello.po +136 -51
  117. data/locale/cs/katello.po +136 -49
  118. data/locale/de/katello.po +136 -48
  119. data/locale/en/katello.po +136 -48
  120. data/locale/es/katello.po +136 -48
  121. data/locale/fr/katello.po +136 -48
  122. data/locale/gu/katello.po +136 -51
  123. data/locale/hi/katello.po +136 -51
  124. data/locale/it/katello.po +136 -48
  125. data/locale/ja/katello.po +136 -48
  126. data/locale/katello.pot +941 -767
  127. data/locale/kn/katello.po +136 -51
  128. data/locale/ko/katello.po +136 -48
  129. data/locale/mr/katello.po +136 -51
  130. data/locale/or/katello.po +136 -51
  131. data/locale/pa/katello.po +136 -51
  132. data/locale/pt/katello.po +136 -51
  133. data/locale/pt_BR/katello.po +136 -48
  134. data/locale/ru/katello.po +136 -48
  135. data/locale/ta/katello.po +136 -51
  136. data/locale/te/katello.po +136 -51
  137. data/locale/zh_CN/katello.po +136 -48
  138. data/locale/zh_TW/katello.po +136 -48
  139. data/webpack/components/TypeAhead/TypeAhead.js +2 -1
  140. data/webpack/components/TypeAhead/pf3Search/TypeAheadSearch.js +2 -1
  141. data/webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js +7 -2
  142. data/webpack/scenes/Subscriptions/Manifest/index.js +1 -0
  143. metadata +31 -19
  144. data/lib/katello/tasks/common.rake +0 -7
@@ -12,7 +12,7 @@
12
12
  <section>
13
13
  <p bst-alert="warning" >
14
14
  <span translate>
15
- Katello-agent is deprecated and will be removed in Katello 4.0. Consider migrating to Remote Execution.
15
+ Katello-agent is deprecated and will be removed in a future release.
16
16
  </span>
17
17
  </p>
18
18
  </section>
@@ -16,16 +16,20 @@
16
16
  angular.module('Bastion.content-views').controller('ContentViewVersionDeletionActivationKeysController',
17
17
  ['$scope', '$location', 'Organization', 'CurrentOrganization', 'Nutupane', 'ActivationKey',
18
18
  function ($scope, $location, Organization, CurrentOrganization, Nutupane, ActivationKey) {
19
- var params, nutupane;
19
+ var params, nutupane, nutupaneParams;
20
20
 
21
21
  $scope.validateEnvironmentSelection();
22
22
  params = {
23
23
  'organization_id': CurrentOrganization,
24
- 'content_view_id': $scope.contentView.id,
25
24
  'sort_by': 'name',
26
25
  'sort_order': 'ASC'
27
26
  };
28
- nutupane = new Nutupane(ActivationKey, params);
27
+
28
+ nutupaneParams = {
29
+ 'disableAutoLoad': true
30
+ };
31
+
32
+ nutupane = new Nutupane(ActivationKey, params, undefined, nutupaneParams);
29
33
  $scope.controllerName = 'katello_activation_keys';
30
34
 
31
35
  nutupane.searchTransform = function (term) {
@@ -43,6 +47,7 @@ angular.module('Bastion.content-views').controller('ContentViewVersionDeletionAc
43
47
 
44
48
  return term + " AND " + addition;
45
49
  };
50
+ nutupane.load();
46
51
 
47
52
  $scope.table = nutupane.table;
48
53
  $scope.table.closeItem = function () {};
@@ -17,16 +17,20 @@ angular.module('Bastion.content-views').controller('ContentViewVersionDeletionCo
17
17
  ['$scope', '$location', 'Organization', 'CurrentOrganization', 'Nutupane', 'Host',
18
18
  function ($scope, $location, Organization, CurrentOrganization, Nutupane, Host) {
19
19
 
20
- var params, nutupane;
20
+ var params, nutupane, nutupaneParams;
21
21
 
22
22
  $scope.validateEnvironmentSelection();
23
23
  params = {
24
24
  'organization_id': CurrentOrganization,
25
- 'content_view_id': $scope.contentView.id,
26
25
  'sort_by': 'name',
27
26
  'sort_order': 'ASC'
28
27
  };
29
- nutupane = new Nutupane(Host, params);
28
+
29
+ nutupaneParams = {
30
+ 'disableAutoLoad': true
31
+ };
32
+
33
+ nutupane = new Nutupane(Host, params, undefined, nutupaneParams);
30
34
  $scope.controllerName = 'hosts';
31
35
 
32
36
  nutupane.searchTransform = function (term) {
@@ -44,6 +48,8 @@ angular.module('Bastion.content-views').controller('ContentViewVersionDeletionCo
44
48
 
45
49
  return term + " AND " + addition;
46
50
  };
51
+
52
+ nutupane.load();
47
53
  $scope.table = nutupane.table;
48
54
  $scope.table.closeItem = function () {};
49
55
 
@@ -13,7 +13,7 @@
13
13
  </div>
14
14
 
15
15
  <nav data-block="item-actions">
16
- <button type="button" class="btn btn-primary" ng-hide="denied('publish_content_views', contentView) || contentView.import_only"
16
+ <button type="button" class="btn btn-primary" ng-hide="denied('publish_content_views', contentView) || contentView.import_only"
17
17
  ui-sref="content-view.publish">
18
18
  <span translate>Publish New Version</span>
19
19
  </button>
@@ -7,6 +7,10 @@
7
7
  It can be promoted to other environments from the Versions tab of this Content View.
8
8
  </p>
9
9
 
10
+ <div bst-alert="warning" ng-show="contentView.errors['messages'].length > 0">
11
+ <span translate>{{contentView.errors['messages'][0]}}</span>
12
+ </div>
13
+
10
14
  <header class="details-header">
11
15
  <h3 translate>Version Details</h3>
12
16
  </header>
@@ -521,6 +521,10 @@ msgstr ""
521
521
  msgid "Add ons"
522
522
  msgstr ""
523
523
 
524
+ #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-system-purpose-modal.html
525
+ msgid "Add ons:"
526
+ msgstr ""
527
+
524
528
  #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-group-filter-details.html
525
529
  msgid "Add Package Group"
526
530
  msgstr ""
@@ -1028,6 +1032,7 @@ msgstr[1] ""
1028
1032
 
1029
1033
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-environment-modal.html
1030
1034
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-release-version-modal.html
1035
+ #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-system-purpose-modal.html
1031
1036
  msgid "Assign"
1032
1037
  msgstr ""
1033
1038
 
@@ -1039,6 +1044,10 @@ msgstr ""
1039
1044
  msgid "Assign Release Version"
1040
1045
  msgstr ""
1041
1046
 
1047
+ #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-system-purpose-modal.html
1048
+ msgid "Assign System Purpose:"
1049
+ msgstr ""
1050
+
1042
1051
  #: app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-details.html
1043
1052
  msgid "Associations"
1044
1053
  msgstr ""
@@ -1192,6 +1201,7 @@ msgid "Build Time"
1192
1201
  msgstr ""
1193
1202
 
1194
1203
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-host-bulk-module-streams-modal.html
1204
+ #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-system-purpose-modal.html
1195
1205
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-traces-modal.html
1196
1206
  #: app/assets/javascripts/bastion_katello/content-views/deletion/views/content-view-deletion.html
1197
1207
  #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-activation-keys.html
@@ -1284,10 +1294,6 @@ msgstr ""
1284
1294
  msgid "Checksum Type"
1285
1295
  msgstr ""
1286
1296
 
1287
- #: app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html
1288
- msgid "Choose <b>Default</b> to enable the repository for all architectures"
1289
- msgstr ""
1290
-
1291
1297
  #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-promotion.html
1292
1298
  msgid "Choose a lifecycle environment from the available promotion paths."
1293
1299
  msgstr ""
@@ -1524,6 +1530,10 @@ msgstr ""
1524
1530
  msgid "Content Host Status"
1525
1531
  msgstr ""
1526
1532
 
1533
+ #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-system-purpose-modal.html
1534
+ msgid "Content Host System Purpose"
1535
+ msgstr ""
1536
+
1527
1537
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-details.html
1528
1538
  msgid "Content Host:"
1529
1539
  msgstr ""
@@ -1771,6 +1781,10 @@ msgstr ""
1771
1781
  msgid "Cron Logic"
1772
1782
  msgstr ""
1773
1783
 
1784
+ #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-system-purpose-modal.html
1785
+ msgid "ctrl-click or shift-click to select multiple Add ons"
1786
+ msgstr ""
1787
+
1774
1788
  #: app/assets/javascripts/bastion_katello/content-hosts/content/content-host-errata.controller.js
1775
1789
  msgid "Current Lifecycle Environment (%e/%cv)"
1776
1790
  msgstr ""
@@ -1860,8 +1874,6 @@ msgid "Debs"
1860
1874
  msgstr ""
1861
1875
 
1862
1876
  #: app/assets/javascripts/bastion_katello/products/details/repositories/checksum.service.js
1863
- #: app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details-info.controller.js
1864
- #: app/assets/javascripts/bastion_katello/products/details/repositories/new/new-repository.controller.js
1865
1877
  msgid "Default"
1866
1878
  msgstr ""
1867
1879
 
@@ -1944,6 +1956,10 @@ msgstr ""
1944
1956
  msgid "Description"
1945
1957
  msgstr ""
1946
1958
 
1959
+ #: app/assets/javascripts/bastion_katello/content-views/new/views/content-view-new.html
1960
+ msgid "Designate whether this Content View is for importing from an upstream server. Import-only Content Views can not be published directly."
1961
+ msgstr ""
1962
+
1947
1963
  #: app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-details.html
1948
1964
  #: app/assets/javascripts/bastion_katello/content-credentials/details/views/content-credential-details.html
1949
1965
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-details.html
@@ -2605,6 +2621,15 @@ msgstr ""
2605
2621
  msgid "Immediate"
2606
2622
  msgstr ""
2607
2623
 
2624
+ #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-info.html
2625
+ #: app/assets/javascripts/bastion_katello/content-views/new/views/content-view-new.html
2626
+ msgid "Import-only"
2627
+ msgstr ""
2628
+
2629
+ #: app/assets/javascripts/bastion_katello/content-views/views/content-views.html
2630
+ msgid "Import-only?"
2631
+ msgstr ""
2632
+
2608
2633
  #: app/assets/javascripts/bastion_katello/errata/errata-severity.filter.js
2609
2634
  msgid "Important"
2610
2635
  msgstr ""
@@ -2753,7 +2778,7 @@ msgstr ""
2753
2778
 
2754
2779
  #: app/assets/javascripts/bastion_katello/common/views/katello-agent-notice.html
2755
2780
  #: app/assets/javascripts/bastion_katello/content-hosts/views/register-client.html
2756
- msgid "Katello-agent is deprecated and will be removed in Katello 4.0. Consider migrating to Remote Execution."
2781
+ msgid "Katello-agent is deprecated and will be removed in a future release."
2757
2782
  msgstr ""
2758
2783
 
2759
2784
  #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-info.html
@@ -3024,6 +3049,10 @@ msgstr ""
3024
3049
  msgid "Manage Sync Plan"
3025
3050
  msgstr ""
3026
3051
 
3052
+ #: app/assets/javascripts/bastion_katello/content-hosts/views/content-hosts.html
3053
+ msgid "Manage System Purpose"
3054
+ msgstr ""
3055
+
3027
3056
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-manage-docker-manifests.html
3028
3057
  msgid "Manifest Lists"
3029
3058
  msgstr ""
@@ -3478,6 +3507,11 @@ msgstr ""
3478
3507
  msgid "No repository sets provided through subscriptions."
3479
3508
  msgstr ""
3480
3509
 
3510
+ #: app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details-info.controller.js
3511
+ #: app/assets/javascripts/bastion_katello/products/details/repositories/new/new-repository.controller.js
3512
+ msgid "No restriction"
3513
+ msgstr ""
3514
+
3481
3515
  #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-rule-matching-package-modal.html
3482
3516
  msgid "No RPMs were matched"
3483
3517
  msgstr ""
@@ -4626,6 +4660,10 @@ msgstr ""
4626
4660
  msgid "Restart Services on Content Host \"{{host.name}}\"?"
4627
4661
  msgstr ""
4628
4662
 
4663
+ #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html
4664
+ msgid "Restrict to <br>OS version"
4665
+ msgstr ""
4666
+
4629
4667
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html
4630
4668
  msgid "Restrict to architecture"
4631
4669
  msgstr ""
@@ -4634,6 +4672,10 @@ msgstr ""
4634
4672
  msgid "Restrict to Architecture"
4635
4673
  msgstr ""
4636
4674
 
4675
+ #: app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html
4676
+ msgid "Restrict to OS version"
4677
+ msgstr ""
4678
+
4637
4679
  #: app/assets/javascripts/bastion_katello/tasks/views/task-details.html
4638
4680
  msgid "Result"
4639
4681
  msgstr ""
@@ -4643,6 +4685,10 @@ msgstr ""
4643
4685
  msgid "Role"
4644
4686
  msgstr ""
4645
4687
 
4688
+ #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-system-purpose-modal.html
4689
+ msgid "Role:"
4690
+ msgstr ""
4691
+
4646
4692
  #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-rule-matching-package-modal.html
4647
4693
  #: app/assets/javascripts/bastion_katello/packages/views/packages.html
4648
4694
  #: app/assets/javascripts/bastion_katello/content-views/details/filters/filter-helper.service.js
@@ -4798,10 +4844,18 @@ msgstr ""
4798
4844
  msgid "Service Level (SLA)"
4799
4845
  msgstr ""
4800
4846
 
4847
+ #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-system-purpose-modal.html
4848
+ msgid "Service Level:"
4849
+ msgstr ""
4850
+
4801
4851
  #: app/assets/javascripts/bastion_katello/content-hosts/views/content-hosts.html
4802
4852
  msgid "Set Release Version"
4803
4853
  msgstr ""
4804
4854
 
4855
+ #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-system-purpose-modal.html
4856
+ msgid "Set System Purpose values on {{ hostCount }} selected content hosts?"
4857
+ msgstr ""
4858
+
4805
4859
  #: app/assets/javascripts/bastion_katello/errata/details/views/erratum-info.html
4806
4860
  msgid "Severity"
4807
4861
  msgstr ""
@@ -5204,6 +5258,10 @@ msgstr ""
5204
5258
  msgid "System Purpose allows you to set the system's intended use on your network and improves the accuracy of auto attaching subscriptions."
5205
5259
  msgstr ""
5206
5260
 
5261
+ #: app/assets/javascripts/bastion_katello/host-collections/details/views/host-collection-info.html
5262
+ msgid "System Purpose Management"
5263
+ msgstr ""
5264
+
5207
5265
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-info.html
5208
5266
  msgid "System Purpose Status"
5209
5267
  msgstr ""
@@ -5304,6 +5362,15 @@ msgstr ""
5304
5362
  msgid "The Remote Execution plugin needs to be installed in order to resolve Traces."
5305
5363
  msgstr ""
5306
5364
 
5365
+ #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html
5366
+ msgid "The repository will be enabled by default on content hosts with the selected architecture."
5367
+ msgstr ""
5368
+
5369
+ #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html
5370
+ #: app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html
5371
+ msgid "The repository will be enabled by default on content hosts with the selected OS version."
5372
+ msgstr ""
5373
+
5307
5374
  #: app/assets/javascripts/bastion_katello/activation-keys/new/views/activation-key-new.html
5308
5375
  msgid "The selected environment contains no Content Views, please select a different environment."
5309
5376
  msgstr ""
@@ -5746,6 +5813,10 @@ msgstr ""
5746
5813
  msgid "Usage Type"
5747
5814
  msgstr ""
5748
5815
 
5816
+ #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-system-purpose-modal.html
5817
+ msgid "Usage Type:"
5818
+ msgstr ""
5819
+
5749
5820
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html
5750
5821
  #: app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html
5751
5822
  msgid "Use Ctrl-click to multi-select/deselect items."
@@ -328,6 +328,7 @@ msgstr ""
328
328
  "Inhaltsansichten. Komponenten, die eine Aktualisierung erfordern, werden "
329
329
  "darunter aufgelistet."
330
330
 
331
+ #: app/assets/javascripts/bastion_katello/products/bulk/products-bulk-advanced-sync-modal.controller.js
331
332
  #: app/assets/javascripts/bastion_katello/products/products.controller.js
332
333
  msgid "/foreman_tasks/tasks/%taskId"
333
334
  msgstr ""
@@ -1522,6 +1523,7 @@ msgstr ""
1522
1523
  msgid "Click to monitor task progress."
1523
1524
  msgstr ""
1524
1525
 
1526
+ #: app/assets/javascripts/bastion_katello/products/bulk/products-bulk-advanced-sync-modal.controller.js
1525
1527
  #: app/assets/javascripts/bastion_katello/products/bulk/products-bulk-http-proxy-modal.controller.js
1526
1528
  #: app/assets/javascripts/bastion_katello/products/details/product-repositories.controller.js
1527
1529
  #: app/assets/javascripts/bastion_katello/products/products.controller.js
@@ -2314,11 +2316,6 @@ msgstr "Bearbeiten"
2314
2316
  msgid "Enable"
2315
2317
  msgstr "Aktivieren"
2316
2318
 
2317
- #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html
2318
- #: app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html
2319
- msgid "Enable on Registration"
2320
- msgstr ""
2321
-
2322
2319
  #: app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-traces.html
2323
2320
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-info.html
2324
2321
  msgid "Enable Traces"
@@ -3512,11 +3509,9 @@ msgstr "Name"
3512
3509
 
3513
3510
  #: app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html
3514
3511
  msgid ""
3515
- "Name of the upstream repository you want to sync. Example: 'busybox' or "
3516
- "'fedora/ssh'."
3512
+ "Name of the upstream repository you want to sync. Example: 'quay/busybox' or"
3513
+ " 'fedora/ssh'."
3517
3514
  msgstr ""
3518
- "Name des Upstream-Repositorys, das Sie synchronisieren möchten. Beispiel: "
3519
- "\"busybox\" oder \"fedora/ssh\"."
3520
3515
 
3521
3516
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-info.html
3522
3517
  msgid "Networking"
@@ -4271,9 +4266,11 @@ msgid "Product sync has been initiated in the background."
4271
4266
  msgstr ""
4272
4267
 
4273
4268
  #: app/assets/javascripts/bastion_katello/products/bulk/products-bulk-advanced-sync-modal.controller.js
4274
- msgid ""
4275
- "Product syncs has been initiated in the background. Click %s to monitor the "
4276
- "progress."
4269
+ msgid "Product syncs has been initiated in the background."
4270
+ msgstr ""
4271
+
4272
+ #: app/assets/javascripts/bastion_katello/products/products.controller.js
4273
+ msgid "Product verify checksum has been initiated in the background."
4277
4274
  msgstr ""
4278
4275
 
4279
4276
  #: app/assets/javascripts/bastion_katello/content-credentials/details/views/content-credential-details.html
@@ -5119,12 +5116,6 @@ msgid ""
5119
5116
  "will be synced."
5120
5117
  msgstr ""
5121
5118
 
5122
- #: app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html
5123
- msgid ""
5124
- "Selecting this option will automatically enable this Repository when a Host "
5125
- "registers and consumes this subscription."
5126
- msgstr ""
5127
-
5128
5119
  #: app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html
5129
5120
  msgid ""
5130
5121
  "Selecting this option will result in contents that are no longer part of the"
@@ -5924,8 +5915,8 @@ msgstr ""
5924
5915
 
5925
5916
  #: app/assets/javascripts/bastion_katello/subscriptions/views/content-access-mode-banner.html
5926
5917
  msgid ""
5927
- "This organization has Simple Content Access enabled. Hosts can consume from "
5928
- "all repositories in their Content View regardless of subscription status."
5918
+ "This organization has Simple Content Access enabled. Hosts are not required"
5919
+ " to have subscriptions attached to access repositories."
5929
5920
  msgstr ""
5930
5921
 
5931
5922
  #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-environments.html
@@ -6222,6 +6213,7 @@ msgstr ""
6222
6213
  #: app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html
6223
6214
  msgid ""
6224
6215
  "URL of the registry you want to sync. Example: https://registry-1.docker.io/"
6216
+ " or https://quay.io/"
6225
6217
  msgstr ""
6226
6218
 
6227
6219
  #: app/assets/javascripts/bastion_katello/products/discovery/views/discovery.html
@@ -6286,6 +6278,11 @@ msgstr ""
6286
6278
  msgid "Variant"
6287
6279
  msgstr ""
6288
6280
 
6281
+ #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-details.html
6282
+ #: app/assets/javascripts/bastion_katello/products/views/products.html
6283
+ msgid "Verify Content Checksum"
6284
+ msgstr ""
6285
+
6289
6286
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html
6290
6287
  #: app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html
6291
6288
  #: app/assets/javascripts/bastion_katello/products/discovery/views/discovery-create.html
@@ -327,6 +327,7 @@ msgstr ""
327
327
  "compuestas. Los componentes que deben actualizarse se enumeran a "
328
328
  "continuación. "
329
329
 
330
+ #: app/assets/javascripts/bastion_katello/products/bulk/products-bulk-advanced-sync-modal.controller.js
330
331
  #: app/assets/javascripts/bastion_katello/products/products.controller.js
331
332
  msgid "/foreman_tasks/tasks/%taskId"
332
333
  msgstr ""
@@ -1589,6 +1590,7 @@ msgstr ""
1589
1590
  msgid "Click to monitor task progress."
1590
1591
  msgstr ""
1591
1592
 
1593
+ #: app/assets/javascripts/bastion_katello/products/bulk/products-bulk-advanced-sync-modal.controller.js
1592
1594
  #: app/assets/javascripts/bastion_katello/products/bulk/products-bulk-http-proxy-modal.controller.js
1593
1595
  #: app/assets/javascripts/bastion_katello/products/details/product-repositories.controller.js
1594
1596
  #: app/assets/javascripts/bastion_katello/products/products.controller.js
@@ -2390,11 +2392,6 @@ msgstr "Editar"
2390
2392
  msgid "Enable"
2391
2393
  msgstr "Habilitar"
2392
2394
 
2393
- #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html
2394
- #: app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html
2395
- msgid "Enable on Registration"
2396
- msgstr ""
2397
-
2398
2395
  #: app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-traces.html
2399
2396
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-info.html
2400
2397
  msgid "Enable Traces"
@@ -3598,11 +3595,9 @@ msgstr "Nombre"
3598
3595
 
3599
3596
  #: app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html
3600
3597
  msgid ""
3601
- "Name of the upstream repository you want to sync. Example: 'busybox' or "
3602
- "'fedora/ssh'."
3598
+ "Name of the upstream repository you want to sync. Example: 'quay/busybox' or"
3599
+ " 'fedora/ssh'."
3603
3600
  msgstr ""
3604
- "Nombre del repositorio de la corriente de desarrollo principal que desea "
3605
- "sincronizar. Por ejemplo: 'busybox' o 'fedora/ssh'."
3606
3601
 
3607
3602
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-info.html
3608
3603
  msgid "Networking"
@@ -4391,12 +4386,12 @@ msgid "Product sync has been initiated in the background."
4391
4386
  msgstr ""
4392
4387
 
4393
4388
  #: app/assets/javascripts/bastion_katello/products/bulk/products-bulk-advanced-sync-modal.controller.js
4394
- msgid ""
4395
- "Product syncs has been initiated in the background. Click %s to monitor the "
4396
- "progress."
4389
+ msgid "Product syncs has been initiated in the background."
4390
+ msgstr ""
4391
+
4392
+ #: app/assets/javascripts/bastion_katello/products/products.controller.js
4393
+ msgid "Product verify checksum has been initiated in the background."
4397
4394
  msgstr ""
4398
- "Se inició la sincronización de productos en segundo plano. Haga clic en %s "
4399
- "para controlar el progreso."
4400
4395
 
4401
4396
  #: app/assets/javascripts/bastion_katello/content-credentials/details/views/content-credential-details.html
4402
4397
  #: app/assets/javascripts/bastion_katello/content-credentials/details/views/content-credential-info.html
@@ -5258,12 +5253,6 @@ msgstr ""
5258
5253
  "\"Validar contenido\" hará que solo se sincronicen los repositorios Yum que "
5259
5254
  "utilizan políticas de descarga \"Inmediata\" o \"En segundo plano\"."
5260
5255
 
5261
- #: app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html
5262
- msgid ""
5263
- "Selecting this option will automatically enable this Repository when a Host "
5264
- "registers and consumes this subscription."
5265
- msgstr ""
5266
-
5267
5256
  #: app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html
5268
5257
  msgid ""
5269
5258
  "Selecting this option will result in contents that are no longer part of the"
@@ -6106,8 +6095,8 @@ msgstr ""
6106
6095
 
6107
6096
  #: app/assets/javascripts/bastion_katello/subscriptions/views/content-access-mode-banner.html
6108
6097
  msgid ""
6109
- "This organization has Simple Content Access enabled. Hosts can consume from "
6110
- "all repositories in their Content View regardless of subscription status."
6098
+ "This organization has Simple Content Access enabled. Hosts are not required"
6099
+ " to have subscriptions attached to access repositories."
6111
6100
  msgstr ""
6112
6101
 
6113
6102
  #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-environments.html
@@ -6408,9 +6397,8 @@ msgstr "URL"
6408
6397
  #: app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html
6409
6398
  msgid ""
6410
6399
  "URL of the registry you want to sync. Example: https://registry-1.docker.io/"
6400
+ " or https://quay.io/"
6411
6401
  msgstr ""
6412
- "URL del registro que desea sincronizar. Por ejemplo: "
6413
- "https://registry-1.docker.io/"
6414
6402
 
6415
6403
  #: app/assets/javascripts/bastion_katello/products/discovery/views/discovery.html
6416
6404
  msgid "URL to Discover"
@@ -6477,6 +6465,11 @@ msgstr "Validar sincronización del contenido"
6477
6465
  msgid "Variant"
6478
6466
  msgstr "Variante"
6479
6467
 
6468
+ #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-details.html
6469
+ #: app/assets/javascripts/bastion_katello/products/views/products.html
6470
+ msgid "Verify Content Checksum"
6471
+ msgstr ""
6472
+
6480
6473
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html
6481
6474
  #: app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html
6482
6475
  #: app/assets/javascripts/bastion_katello/products/discovery/views/discovery-create.html