katello 3.17.3 → 3.18.0.rc1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
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 +38 -21
- data/app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb +3 -1
- data/app/controllers/katello/api/v2/activation_keys_controller.rb +10 -15
- data/app/controllers/katello/api/v2/api_controller.rb +2 -1
- data/app/controllers/katello/api/v2/content_credentials_controller.rb +1 -8
- data/app/controllers/katello/api/v2/content_view_components_controller.rb +31 -14
- data/app/controllers/katello/api/v2/content_view_repositories_controller.rb +1 -0
- data/app/controllers/katello/api/v2/content_view_versions_controller.rb +65 -36
- data/app/controllers/katello/api/v2/content_views_controller.rb +27 -25
- data/app/controllers/katello/api/v2/environments_controller.rb +8 -8
- data/app/controllers/katello/api/v2/gpg_keys_controller.rb +5 -5
- data/app/controllers/katello/api/v2/host_collections_controller.rb +19 -16
- data/app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb +17 -0
- data/app/controllers/katello/api/v2/repositories_bulk_actions_controller.rb +1 -1
- data/app/controllers/katello/api/v2/repositories_controller.rb +8 -5
- data/app/controllers/katello/api/v2/subscriptions_controller.rb +1 -1
- data/app/controllers/katello/api/v2/sync_plans_controller.rb +8 -9
- data/app/controllers/katello/api/v2/upstream_subscriptions_controller.rb +9 -2
- data/app/controllers/katello/concerns/api/v2/authorization.rb +9 -5
- data/app/controllers/katello/concerns/api/v2/registration_controller_extensions.rb +21 -0
- data/app/controllers/katello/concerns/api/v2/repository_content_controller.rb +1 -1
- data/app/controllers/katello/concerns/organizations_controller_extensions.rb +2 -1
- data/app/helpers/katello/katello_urls_helper.rb +5 -2
- data/app/lib/actions/candlepin/product/content_create.rb +2 -0
- data/app/lib/actions/candlepin/product/content_update.rb +2 -0
- data/app/lib/actions/katello/applicability/hosts/bulk_generate.rb +2 -6
- data/app/lib/actions/katello/capsule_content/sync_capsule.rb +2 -6
- data/app/lib/actions/katello/content_view/publish.rb +3 -4
- data/app/lib/actions/katello/content_view_version/import.rb +4 -3
- data/app/lib/actions/katello/content_view_version/incremental_update.rb +18 -3
- data/app/lib/actions/katello/host/update_system_purpose.rb +31 -0
- data/app/lib/actions/katello/organization/manifest_delete.rb +0 -1
- data/app/lib/actions/katello/organization/manifest_import.rb +0 -1
- data/app/lib/actions/katello/organization/manifest_refresh.rb +0 -1
- data/app/lib/actions/katello/product/content_create.rb +7 -6
- data/app/lib/actions/katello/repository/filtered_index_content.rb +10 -1
- data/app/lib/actions/katello/repository/import_upload.rb +2 -1
- data/app/lib/actions/katello/repository/update.rb +4 -1
- data/app/lib/actions/pulp3/abstract_async_task.rb +0 -1
- data/app/lib/actions/pulp3/content_view/delete_repository_references.rb +1 -1
- data/app/lib/actions/pulp3/content_view_version/create_importer.rb +7 -3
- data/app/lib/actions/pulp3/content_view_version/export.rb +2 -1
- data/app/lib/actions/pulp3/content_view_version/import.rb +7 -3
- data/app/lib/actions/pulp3/orchestration/content_view_version/export.rb +15 -10
- data/app/lib/actions/pulp3/orchestration/content_view_version/import.rb +16 -10
- data/app/lib/actions/pulp3/repository/commit_upload.rb +2 -1
- data/app/lib/actions/pulp3/repository/delete.rb +1 -1
- data/app/lib/actions/pulp3/repository/save_artifact.rb +1 -1
- data/app/lib/katello/resources/candlepin/consumer.rb +2 -2
- data/app/lib/katello/resources/candlepin/owner.rb +5 -0
- data/app/lib/katello/resources/candlepin/upstream_consumer.rb +6 -0
- data/app/lib/katello/resources/registry.rb +3 -3
- data/app/models/katello/authorization/activation_key.rb +4 -0
- data/app/models/katello/authorization/content_view.rb +13 -0
- data/app/models/katello/authorization/content_view_component.rb +15 -0
- data/app/models/katello/authorization/gpg_key.rb +12 -4
- data/app/models/katello/authorization/lifecycle_environment.rb +8 -0
- data/app/models/katello/authorization/sync_plan.rb +16 -0
- data/app/models/katello/concerns/organization_extensions.rb +4 -5
- data/app/models/katello/concerns/redhat_extensions.rb +2 -2
- data/app/models/katello/concerns/smart_proxy_extensions.rb +1 -3
- data/app/models/katello/content_view_component.rb +2 -0
- data/app/models/katello/content_view_version_export_history.rb +2 -0
- data/app/models/katello/glue/candlepin/pool.rb +9 -14
- data/app/models/katello/glue/pulp/repo.rb +8 -0
- data/app/models/katello/gpg_key.rb +1 -1
- data/app/models/katello/root_repository.rb +26 -1
- data/app/services/katello/applicability/applicable_content_helper.rb +1 -12
- data/app/services/katello/candlepin/event_handler.rb +2 -0
- data/app/services/katello/candlepin/message_handler.rb +34 -0
- data/app/services/katello/candlepin/upstream_consumer.rb +28 -0
- data/app/services/katello/host_status_manager.rb +9 -0
- data/app/services/katello/pulp3/api/apt.rb +57 -0
- data/app/services/katello/pulp3/api/core.rb +8 -0
- data/app/services/katello/pulp3/content_view_version/export.rb +4 -3
- data/app/services/katello/pulp3/content_view_version/import.rb +5 -15
- data/app/services/katello/pulp3/deb.rb +38 -0
- data/app/services/katello/pulp3/erratum.rb +1 -2
- data/app/services/katello/pulp3/pulp_content_unit.rb +5 -0
- data/app/services/katello/pulp3/repository/ansible_collection.rb +9 -0
- data/app/services/katello/pulp3/repository/apt.rb +63 -0
- data/app/services/katello/pulp3/repository/docker.rb +4 -0
- data/app/services/katello/pulp3/repository/yum.rb +2 -1
- data/app/services/katello/pulp3/repository.rb +11 -9
- data/app/services/katello/pulp3/repository_mirror.rb +9 -4
- data/app/services/katello/pulp3/task.rb +3 -3
- data/app/services/katello/pulp3/task_group.rb +0 -6
- data/app/views/dashboard/_subscription_widget.html.erb +0 -5
- data/app/views/katello/api/v2/content_view_version_export_histories/show.json.rabl +1 -1
- data/app/views/katello/api/v2/repositories/base.json.rabl +1 -1
- data/app/views/overrides/organizations/_index_row_override.html.erb +1 -1
- data/config/routes/api/v2.rb +2 -0
- data/config/routes/overrides.rb +1 -0
- data/db/migrate/20150930183738_migrate_content_hosts.rb +1 -1
- data/db/migrate/20200514092553_move_katello_fields_from_hostgroups.katello.rb +2 -5
- data/db/migrate/20201008204114_add_os_versions_to_katello_root_repositories.rb +5 -0
- data/db/migrate/20201012172713_remove_gpg_key_perms.rb +23 -0
- data/db/migrate/20201012192035_add_metadata_to_katello_content_view_version_export_history.rb +5 -0
- data/db/seeds.d/111-upgrade_tasks.rb +2 -1
- data/engines/bastion/app/assets/javascripts/bastion/components/notification.service.js +1 -1
- data/engines/bastion/app/assets/javascripts/bastion/components/nutupane.factory.js +8 -13
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/common/views/katello-agent-notice.html +1 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-system-purpose-modal.controller.js +112 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-system-purpose-modal.html +78 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-debs-installed.controller.js +2 -42
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-host-modal-helper.service.js +11 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-hosts.controller.js +5 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/content-hosts.html +4 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/register-client.html +1 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/host-collection-details.controller.js +4 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/views/host-collection-info.html +6 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/hosts/host-bulk-action.factory.js +2 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/bastion_katello.pot +16 -14
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/bulk/products-bulk-advanced-sync-modal.controller.js +6 -7
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details-info.controller.js +168 -155
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html +17 -2
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/new-repository.controller.js +125 -113
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html +15 -3
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/os-versions.service.js +46 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/views/content-access-mode-banner.html +1 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/sync-plans/details/views/sync-plan-details.html +1 -1
- data/lib/katello/engine.rb +1 -0
- data/lib/katello/permission_creator.rb +68 -59
- data/lib/katello/permissions/host_permissions.rb +1 -0
- data/lib/katello/plugin.rb +4 -1
- data/lib/katello/repository_types/deb.rb +9 -1
- data/lib/katello/tasks/pulp3_content_switchover.rake +1 -3
- data/lib/katello/tasks/pulp3_migration_stats.rake +21 -0
- data/lib/katello/tasks/reports.rake +1 -4
- data/lib/katello/tasks/reset.rake +2 -1
- data/lib/katello/tasks/upgrades/3.18/add_cvv_export_history_metadata.rb +18 -0
- data/lib/katello/version.rb +1 -1
- data/locale/action_names.rb +54 -47
- data/locale/bn/katello.po +165 -26
- data/locale/cs/katello.po +164 -24
- data/locale/de/katello.po +165 -26
- data/locale/en/katello.po +164 -23
- data/locale/es/katello.po +165 -25
- data/locale/fr/katello.po +165 -25
- data/locale/gu/katello.po +165 -26
- data/locale/hi/katello.po +165 -26
- data/locale/it/katello.po +165 -25
- data/locale/ja/katello.po +165 -26
- data/locale/katello.pot +1036 -802
- data/locale/kn/katello.po +165 -26
- data/locale/ko/katello.po +165 -25
- data/locale/mr/katello.po +165 -26
- data/locale/or/katello.po +165 -26
- data/locale/pa/katello.po +165 -26
- data/locale/pt/katello.po +164 -23
- data/locale/pt_BR/katello.po +165 -25
- data/locale/ru/katello.po +165 -25
- data/locale/ta/katello.po +165 -26
- data/locale/te/katello.po +165 -26
- data/locale/zh_CN/katello.po +165 -25
- data/locale/zh_TW/katello.po +165 -26
- data/webpack/components/ActionableDetail.js +2 -1
- data/webpack/components/Search/Search.js +1 -1
- data/webpack/components/Table/MainTable.js +6 -2
- data/webpack/components/Table/TableWrapper.js +46 -9
- data/webpack/scenes/ContentViews/ContentViewSelectors.js +7 -3
- data/webpack/scenes/ContentViews/ContentViewsConstants.js +8 -0
- data/webpack/scenes/ContentViews/ContentViewsPage.js +2 -9
- data/webpack/scenes/ContentViews/Details/ContentViewDetailActions.js +25 -3
- data/webpack/scenes/ContentViews/Details/ContentViewDetailSelectors.js +14 -4
- data/webpack/scenes/ContentViews/Details/ContentViewDetails.js +2 -1
- data/webpack/scenes/ContentViews/Details/Repositories/ContentCounts.js +56 -0
- data/webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js +169 -0
- data/webpack/scenes/ContentViews/Details/Repositories/LastSync.js +47 -0
- data/webpack/scenes/ContentViews/Details/Repositories/RepoAddedStatus.js +17 -0
- data/webpack/scenes/ContentViews/Details/Repositories/RepoIcon.js +23 -0
- data/webpack/scenes/ContentViews/Details/Repositories/SelectableDropdown.js +49 -0
- data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewDetailRepos.fixtures.json +154 -0
- data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewDetailRepos.test.js +131 -0
- data/webpack/scenes/ContentViews/Details/__tests__/contentViewDetail.test.js +3 -0
- data/webpack/scenes/ContentViews/Table/ContentViewsTable.js +4 -1
- data/webpack/scenes/ContentViews/__tests__/contentViewPage.test.js +2 -2
- data/webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js +16 -8
- data/webpack/scenes/Subscriptions/Manifest/ManifestActions.js +17 -0
- data/webpack/scenes/Subscriptions/Manifest/ManifestConstants.js +4 -0
- data/webpack/scenes/Subscriptions/Manifest/SimpleContentAccess.js +19 -2
- data/webpack/scenes/Subscriptions/Manifest/__tests__/SimpleContentAccess.test.js +9 -1
- data/webpack/scenes/Subscriptions/Manifest/index.js +2 -1
- data/webpack/scenes/Subscriptions/SubscriptionConstants.js +1 -1
- data/webpack/scenes/Subscriptions/SubscriptionReducer.js +3 -0
- data/webpack/scenes/Subscriptions/SubscriptionsPage.js +8 -2
- data/webpack/scenes/Subscriptions/SubscriptionsSelectors.js +3 -0
- data/webpack/scenes/Subscriptions/__tests__/SubscriptionsPage.test.js +3 -0
- data/webpack/scenes/Subscriptions/__tests__/SubscriptionsSelectors.test.js +6 -0
- data/webpack/scenes/Subscriptions/__tests__/__snapshots__/SubscriptionsSelectors.test.js.snap +6 -0
- data/webpack/scenes/Subscriptions/components/SubscriptionsToolbar/SubscriptionsToolbar.js +1 -13
- metadata +69 -26
data/locale/en/katello.po
CHANGED
|
@@ -393,6 +393,9 @@ msgstr ""
|
|
|
393
393
|
msgid "Adding content units"
|
|
394
394
|
msgstr ""
|
|
395
395
|
|
|
396
|
+
msgid "Adding multiple versions of the same Puppet Module is not supported by incremental update. The following Puppet Modules have duplicate versions in the incremental update content list: %{dup_list}"
|
|
397
|
+
msgstr ""
|
|
398
|
+
|
|
396
399
|
msgid "Addons"
|
|
397
400
|
msgstr ""
|
|
398
401
|
|
|
@@ -497,6 +500,9 @@ msgstr ""
|
|
|
497
500
|
msgid "Artifacts"
|
|
498
501
|
msgstr ""
|
|
499
502
|
|
|
503
|
+
msgid "Assign system purpose attributes on one or more hosts"
|
|
504
|
+
msgstr ""
|
|
505
|
+
|
|
500
506
|
msgid "Assign the %{count} host with no %{taxonomy_single} to %{taxonomy_name}"
|
|
501
507
|
msgid_plural "Assign all %{count} hosts with no %{taxonomy_single} to %{taxonomy_name}"
|
|
502
508
|
msgstr[0] ""
|
|
@@ -541,9 +547,6 @@ msgstr ""
|
|
|
541
547
|
msgid "Author"
|
|
542
548
|
msgstr ""
|
|
543
549
|
|
|
544
|
-
msgid "Auto Enablement may only be set on custom repositories."
|
|
545
|
-
msgstr ""
|
|
546
|
-
|
|
547
550
|
msgid "Auto Publish - Triggered by '%s'"
|
|
548
551
|
msgstr ""
|
|
549
552
|
|
|
@@ -745,6 +748,9 @@ msgstr ""
|
|
|
745
748
|
msgid "Cannot delete view while it exists in environments"
|
|
746
749
|
msgstr ""
|
|
747
750
|
|
|
751
|
+
msgid "Cannot import a composite content view"
|
|
752
|
+
msgstr ""
|
|
753
|
+
|
|
748
754
|
msgid "Cannot import a custom subscription from a redhat product."
|
|
749
755
|
msgstr ""
|
|
750
756
|
|
|
@@ -820,6 +826,9 @@ msgstr ""
|
|
|
820
826
|
msgid "Checksum type cannot be set for yum repositories with on demand download policy."
|
|
821
827
|
msgstr ""
|
|
822
828
|
|
|
829
|
+
msgid "Chunk export-tarfile into pieces of chunk_size mega bytes. Relevant only for Pulp 3 repositories"
|
|
830
|
+
msgstr ""
|
|
831
|
+
|
|
823
832
|
msgid "Click here to go to the tasks page for the task."
|
|
824
833
|
msgstr ""
|
|
825
834
|
|
|
@@ -943,9 +952,15 @@ msgstr ""
|
|
|
943
952
|
msgid "Content View Version not set"
|
|
944
953
|
msgstr ""
|
|
945
954
|
|
|
955
|
+
msgid "Content View Version specified in the metadata - '%{name}' already exists. If you wish to replace the existing version, delete %{name} and try again. "
|
|
956
|
+
msgstr ""
|
|
957
|
+
|
|
946
958
|
msgid "Content View and Environment not set for registration."
|
|
947
959
|
msgstr ""
|
|
948
960
|
|
|
961
|
+
msgid "Content View id"
|
|
962
|
+
msgstr ""
|
|
963
|
+
|
|
949
964
|
msgid "Content Views"
|
|
950
965
|
msgstr ""
|
|
951
966
|
|
|
@@ -1003,10 +1018,10 @@ msgstr ""
|
|
|
1003
1018
|
msgid "Copy an activation key"
|
|
1004
1019
|
msgstr ""
|
|
1005
1020
|
|
|
1006
|
-
msgid "
|
|
1021
|
+
msgid "Copy version units to library"
|
|
1007
1022
|
msgstr ""
|
|
1008
1023
|
|
|
1009
|
-
msgid "
|
|
1024
|
+
msgid "Cores: %s"
|
|
1010
1025
|
msgstr ""
|
|
1011
1026
|
|
|
1012
1027
|
msgid "Could not delete organization '%s'."
|
|
@@ -1018,6 +1033,9 @@ msgstr ""
|
|
|
1018
1033
|
msgid "Could not find %{count} errata. Only found: %{found}"
|
|
1019
1034
|
msgstr ""
|
|
1020
1035
|
|
|
1036
|
+
msgid "Could not find %{name} resource with id %{id}"
|
|
1037
|
+
msgstr ""
|
|
1038
|
+
|
|
1021
1039
|
msgid "Could not find Environment with ids: %s"
|
|
1022
1040
|
msgstr ""
|
|
1023
1041
|
|
|
@@ -1051,9 +1069,6 @@ msgstr ""
|
|
|
1051
1069
|
msgid "Couldn't find %{type} Filter with id %{id}"
|
|
1052
1070
|
msgstr ""
|
|
1053
1071
|
|
|
1054
|
-
msgid "Couldn't find Content Credential '%s'"
|
|
1055
|
-
msgstr ""
|
|
1056
|
-
|
|
1057
1072
|
msgid "Couldn't find ContentViewFilter with id=%s"
|
|
1058
1073
|
msgstr ""
|
|
1059
1074
|
|
|
@@ -1144,9 +1159,6 @@ msgstr ""
|
|
|
1144
1159
|
msgid "Couldn't find subject of synchronization"
|
|
1145
1160
|
msgstr ""
|
|
1146
1161
|
|
|
1147
|
-
msgid "Couldn't find sync plan '%{plan}' in organization '%{org}'"
|
|
1148
|
-
msgstr ""
|
|
1149
|
-
|
|
1150
1162
|
msgid "Count"
|
|
1151
1163
|
msgstr ""
|
|
1152
1164
|
|
|
@@ -1423,6 +1435,15 @@ msgstr ""
|
|
|
1423
1435
|
msgid "Desired quantity of the pool"
|
|
1424
1436
|
msgstr ""
|
|
1425
1437
|
|
|
1438
|
+
msgid "Destination Server Name required for Pulp3 repositories"
|
|
1439
|
+
msgstr ""
|
|
1440
|
+
|
|
1441
|
+
msgid "Destination Server name"
|
|
1442
|
+
msgstr ""
|
|
1443
|
+
|
|
1444
|
+
msgid "Destination Server name, required for Pulp3"
|
|
1445
|
+
msgstr ""
|
|
1446
|
+
|
|
1426
1447
|
msgid "Destroy"
|
|
1427
1448
|
msgstr ""
|
|
1428
1449
|
|
|
@@ -1474,6 +1495,9 @@ msgstr ""
|
|
|
1474
1495
|
msgid "Directly setting package lists on composite content views is not allowed. Please update the components, then re-publish the composite."
|
|
1475
1496
|
msgstr ""
|
|
1476
1497
|
|
|
1498
|
+
msgid "Directory containing the exported Content View Version"
|
|
1499
|
+
msgstr ""
|
|
1500
|
+
|
|
1477
1501
|
msgid "Disable"
|
|
1478
1502
|
msgstr ""
|
|
1479
1503
|
|
|
@@ -1489,6 +1513,9 @@ msgstr ""
|
|
|
1489
1513
|
msgid "Disable simple content access for a manifest"
|
|
1490
1514
|
msgstr ""
|
|
1491
1515
|
|
|
1516
|
+
msgid "Disabling Simple Content Access failed for '%{subject}'."
|
|
1517
|
+
msgstr ""
|
|
1518
|
+
|
|
1492
1519
|
msgid "Disconnected mode"
|
|
1493
1520
|
msgstr ""
|
|
1494
1521
|
|
|
@@ -1570,6 +1597,9 @@ msgstr ""
|
|
|
1570
1597
|
msgid "Enabled Repositories"
|
|
1571
1598
|
msgstr ""
|
|
1572
1599
|
|
|
1600
|
+
msgid "Enabling Simple Content Access failed for '%{subject}'."
|
|
1601
|
+
msgstr ""
|
|
1602
|
+
|
|
1573
1603
|
msgid "End Date"
|
|
1574
1604
|
msgstr ""
|
|
1575
1605
|
|
|
@@ -1687,6 +1717,9 @@ msgstr ""
|
|
|
1687
1717
|
msgid "Export to ISO format"
|
|
1688
1718
|
msgstr ""
|
|
1689
1719
|
|
|
1720
|
+
msgid "Export to ISO format. Relevant only for Pulp 2 repositories"
|
|
1721
|
+
msgstr ""
|
|
1722
|
+
|
|
1690
1723
|
msgid "Exported version"
|
|
1691
1724
|
msgstr ""
|
|
1692
1725
|
|
|
@@ -1828,9 +1861,6 @@ msgstr ""
|
|
|
1828
1861
|
msgid "GPG Key URL"
|
|
1829
1862
|
msgstr ""
|
|
1830
1863
|
|
|
1831
|
-
msgid "GPG Keys"
|
|
1832
|
-
msgstr ""
|
|
1833
|
-
|
|
1834
1864
|
msgid "Generate and Download"
|
|
1835
1865
|
msgstr ""
|
|
1836
1866
|
|
|
@@ -1936,6 +1966,9 @@ msgstr ""
|
|
|
1936
1966
|
msgid "Host content and subscription details"
|
|
1937
1967
|
msgstr ""
|
|
1938
1968
|
|
|
1969
|
+
msgid "Host creation was skipped for %s because it shares a BIOS UUID with %s. To report this hypervisor, override its dmi.system.uuid fact or set 'candlepin.use_system_uuid_for_matching' to 'true' in the Candlepin configuration."
|
|
1970
|
+
msgstr ""
|
|
1971
|
+
|
|
1939
1972
|
msgid "Host did not finish content action in %s seconds. The task has been cancelled."
|
|
1940
1973
|
msgstr ""
|
|
1941
1974
|
|
|
@@ -2155,6 +2188,12 @@ msgstr ""
|
|
|
2155
2188
|
msgid "Immediate"
|
|
2156
2189
|
msgstr ""
|
|
2157
2190
|
|
|
2191
|
+
msgid "Import"
|
|
2192
|
+
msgstr ""
|
|
2193
|
+
|
|
2194
|
+
msgid "Import Content View Version"
|
|
2195
|
+
msgstr ""
|
|
2196
|
+
|
|
2158
2197
|
msgid "Import Manifest"
|
|
2159
2198
|
msgstr ""
|
|
2160
2199
|
|
|
@@ -2176,6 +2215,9 @@ msgstr ""
|
|
|
2176
2215
|
msgid "Import a Manifest using the manifest tab above."
|
|
2177
2216
|
msgstr ""
|
|
2178
2217
|
|
|
2218
|
+
msgid "Import a content view version"
|
|
2219
|
+
msgstr ""
|
|
2220
|
+
|
|
2179
2221
|
msgid "Import facts"
|
|
2180
2222
|
msgstr ""
|
|
2181
2223
|
|
|
@@ -2341,6 +2383,9 @@ msgstr ""
|
|
|
2341
2383
|
msgid "Invalid filter rule specified, 'version' cannot be specified in the same tuple as 'min_version' or 'max_version'"
|
|
2342
2384
|
msgstr ""
|
|
2343
2385
|
|
|
2386
|
+
msgid "Invalid parameters provided - %{params}. These are only relevant for Pulp 2 repositories"
|
|
2387
|
+
msgstr ""
|
|
2388
|
+
|
|
2344
2389
|
msgid "Invalid parameters sent in the request for this operation. Please contact a system administrator."
|
|
2345
2390
|
msgstr ""
|
|
2346
2391
|
|
|
@@ -2353,6 +2398,9 @@ msgstr ""
|
|
|
2353
2398
|
msgid "Invalid params provided - date_type must be one of %s"
|
|
2354
2399
|
msgstr ""
|
|
2355
2400
|
|
|
2401
|
+
msgid "Invalid path specified."
|
|
2402
|
+
msgstr ""
|
|
2403
|
+
|
|
2356
2404
|
msgid ""
|
|
2357
2405
|
"Invalid puppet module parameters specified. \\\n"
|
|
2358
2406
|
" Either 'uuid' or 'name' and 'author' must be specified."
|
|
@@ -2430,9 +2478,6 @@ msgstr ""
|
|
|
2430
2478
|
msgid "Learn more about adding Subscription Manifests"
|
|
2431
2479
|
msgstr ""
|
|
2432
2480
|
|
|
2433
|
-
msgid "Learn more about your overall subscription usage (opens in a new tab)"
|
|
2434
|
-
msgstr ""
|
|
2435
|
-
|
|
2436
2481
|
msgid "Library lifecycle environments may not be deleted."
|
|
2437
2482
|
msgstr ""
|
|
2438
2483
|
|
|
@@ -2685,6 +2730,9 @@ msgstr ""
|
|
|
2685
2730
|
msgid "List srpms"
|
|
2686
2731
|
msgstr ""
|
|
2687
2732
|
|
|
2733
|
+
msgid "List subscriptions"
|
|
2734
|
+
msgstr ""
|
|
2735
|
+
|
|
2688
2736
|
msgid "List sync plans"
|
|
2689
2737
|
msgstr ""
|
|
2690
2738
|
|
|
@@ -2772,6 +2820,9 @@ msgstr ""
|
|
|
2772
2820
|
msgid "Messaging connection"
|
|
2773
2821
|
msgstr ""
|
|
2774
2822
|
|
|
2823
|
+
msgid "Metadata taken from the upstream export history for this Content View Version"
|
|
2824
|
+
msgstr ""
|
|
2825
|
+
|
|
2775
2826
|
msgid "Mismatched"
|
|
2776
2827
|
msgstr ""
|
|
2777
2828
|
|
|
@@ -2913,12 +2964,18 @@ msgstr ""
|
|
|
2913
2964
|
msgid "No hosts registered with subscription-manager found in selection."
|
|
2914
2965
|
msgstr ""
|
|
2915
2966
|
|
|
2967
|
+
msgid "No installed packages and/or enabled repositories have been reported by %s."
|
|
2968
|
+
msgstr ""
|
|
2969
|
+
|
|
2916
2970
|
msgid "No manifest file uploaded"
|
|
2917
2971
|
msgstr ""
|
|
2918
2972
|
|
|
2919
2973
|
msgid "No matching content views found"
|
|
2920
2974
|
msgstr ""
|
|
2921
2975
|
|
|
2976
|
+
msgid "No matching repositories found"
|
|
2977
|
+
msgstr ""
|
|
2978
|
+
|
|
2922
2979
|
msgid "No new packages installed"
|
|
2923
2980
|
msgstr ""
|
|
2924
2981
|
|
|
@@ -3054,6 +3111,9 @@ msgstr ""
|
|
|
3054
3111
|
msgid "On-disk location for exported repositories"
|
|
3055
3112
|
msgstr ""
|
|
3056
3113
|
|
|
3114
|
+
msgid "On-disk location for pulp 3 exported repositories"
|
|
3115
|
+
msgstr ""
|
|
3116
|
+
|
|
3057
3117
|
msgid "One of parameters [ %s ] required but not specified."
|
|
3058
3118
|
msgstr ""
|
|
3059
3119
|
|
|
@@ -3084,6 +3144,9 @@ msgstr ""
|
|
|
3084
3144
|
msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z)"
|
|
3085
3145
|
msgstr ""
|
|
3086
3146
|
|
|
3147
|
+
msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z). Relevant only for Pulp 2 repositories"
|
|
3148
|
+
msgstr ""
|
|
3149
|
+
|
|
3087
3150
|
msgid "Organization"
|
|
3088
3151
|
msgstr ""
|
|
3089
3152
|
|
|
@@ -3321,6 +3384,9 @@ msgstr ""
|
|
|
3321
3384
|
msgid "Plan numeric identifier"
|
|
3322
3385
|
msgstr ""
|
|
3323
3386
|
|
|
3387
|
+
msgid "Please add some repositories."
|
|
3388
|
+
msgstr ""
|
|
3389
|
+
|
|
3324
3390
|
msgid "Please enter a positive number above zero"
|
|
3325
3391
|
msgstr ""
|
|
3326
3392
|
|
|
@@ -3452,6 +3518,9 @@ msgstr ""
|
|
|
3452
3518
|
msgid "Pulp"
|
|
3453
3519
|
msgstr ""
|
|
3454
3520
|
|
|
3521
|
+
msgid "Pulp 3 export destination filepath"
|
|
3522
|
+
msgstr ""
|
|
3523
|
+
|
|
3455
3524
|
msgid "Pulp 3 migration cannot run. Types %s have already been migrated."
|
|
3456
3525
|
msgstr ""
|
|
3457
3526
|
|
|
@@ -3506,6 +3575,12 @@ msgstr ""
|
|
|
3506
3575
|
msgid "Pulp task error"
|
|
3507
3576
|
msgstr ""
|
|
3508
3577
|
|
|
3578
|
+
msgid "Pulp user or group unable to read '%s'."
|
|
3579
|
+
msgstr ""
|
|
3580
|
+
|
|
3581
|
+
msgid "Pulp user or group unable to read content in '%s'."
|
|
3582
|
+
msgstr ""
|
|
3583
|
+
|
|
3509
3584
|
msgid "Pulpcore"
|
|
3510
3585
|
msgstr ""
|
|
3511
3586
|
|
|
@@ -3641,6 +3716,9 @@ msgstr ""
|
|
|
3641
3716
|
msgid "Reload data"
|
|
3642
3717
|
msgstr ""
|
|
3643
3718
|
|
|
3719
|
+
msgid "Remote action:"
|
|
3720
|
+
msgstr ""
|
|
3721
|
+
|
|
3644
3722
|
msgid "Removal of package group(s) requested: %{groups}"
|
|
3645
3723
|
msgstr ""
|
|
3646
3724
|
|
|
@@ -3725,6 +3803,9 @@ msgstr ""
|
|
|
3725
3803
|
msgid "Repo Type"
|
|
3726
3804
|
msgstr ""
|
|
3727
3805
|
|
|
3806
|
+
msgid "Report"
|
|
3807
|
+
msgstr ""
|
|
3808
|
+
|
|
3728
3809
|
msgid "Repositories"
|
|
3729
3810
|
msgstr ""
|
|
3730
3811
|
|
|
@@ -3797,6 +3878,9 @@ msgstr ""
|
|
|
3797
3878
|
msgid "Resolve Traces"
|
|
3798
3879
|
msgstr ""
|
|
3799
3880
|
|
|
3881
|
+
msgid "Resolve traces for one or more hosts"
|
|
3882
|
+
msgstr ""
|
|
3883
|
+
|
|
3800
3884
|
msgid "Resource"
|
|
3801
3885
|
msgstr ""
|
|
3802
3886
|
|
|
@@ -3875,6 +3959,9 @@ msgstr ""
|
|
|
3875
3959
|
msgid "Role"
|
|
3876
3960
|
msgstr ""
|
|
3877
3961
|
|
|
3962
|
+
msgid "Role of host"
|
|
3963
|
+
msgstr ""
|
|
3964
|
+
|
|
3878
3965
|
msgid "Run Sync Plan:"
|
|
3879
3966
|
msgstr ""
|
|
3880
3967
|
|
|
@@ -3971,6 +4058,9 @@ msgstr ""
|
|
|
3971
4058
|
msgid "Service Level (SLA)"
|
|
3972
4059
|
msgstr ""
|
|
3973
4060
|
|
|
4061
|
+
msgid "Service level of host"
|
|
4062
|
+
msgstr ""
|
|
4063
|
+
|
|
3974
4064
|
msgid "Service level to be used for autoheal"
|
|
3975
4065
|
msgstr ""
|
|
3976
4066
|
|
|
@@ -4064,6 +4154,9 @@ msgstr ""
|
|
|
4064
4154
|
msgid "Show the available repository types"
|
|
4065
4155
|
msgstr ""
|
|
4066
4156
|
|
|
4157
|
+
msgid "Show the export history for a content view version"
|
|
4158
|
+
msgstr ""
|
|
4159
|
+
|
|
4067
4160
|
msgid "Shows status of Katello system and it's subcomponents"
|
|
4068
4161
|
msgstr ""
|
|
4069
4162
|
|
|
@@ -4073,6 +4166,12 @@ msgstr ""
|
|
|
4073
4166
|
msgid "Simple Content Access"
|
|
4074
4167
|
msgstr ""
|
|
4075
4168
|
|
|
4169
|
+
msgid "Simple Content Access has been disabled for '%{subject}'."
|
|
4170
|
+
msgstr ""
|
|
4171
|
+
|
|
4172
|
+
msgid "Simple Content Access has been enabled for '%{subject}'."
|
|
4173
|
+
msgstr ""
|
|
4174
|
+
|
|
4076
4175
|
msgid "Size of file to upload"
|
|
4077
4176
|
msgstr ""
|
|
4078
4177
|
|
|
@@ -4307,6 +4406,9 @@ msgstr ""
|
|
|
4307
4406
|
msgid "Sync plan identifier to attach"
|
|
4308
4407
|
msgstr ""
|
|
4309
4408
|
|
|
4409
|
+
msgid "Sync state"
|
|
4410
|
+
msgstr ""
|
|
4411
|
+
|
|
4310
4412
|
msgid "Synced Content"
|
|
4311
4413
|
msgstr ""
|
|
4312
4414
|
|
|
@@ -4415,6 +4517,9 @@ msgstr ""
|
|
|
4415
4517
|
msgid "The id of the host to alter"
|
|
4416
4518
|
msgstr ""
|
|
4417
4519
|
|
|
4520
|
+
msgid "The import path must be in a subdirectory under '%s'."
|
|
4521
|
+
msgstr ""
|
|
4522
|
+
|
|
4418
4523
|
msgid "The list of environments to promote the specified Content View Version to (replacing the older version)"
|
|
4419
4524
|
msgstr ""
|
|
4420
4525
|
|
|
@@ -4463,6 +4568,9 @@ msgstr ""
|
|
|
4463
4568
|
msgid "The requested resource does not belong to the specified organization"
|
|
4464
4569
|
msgstr ""
|
|
4465
4570
|
|
|
4571
|
+
msgid "The requested traces were not found for this host"
|
|
4572
|
+
msgstr ""
|
|
4573
|
+
|
|
4466
4574
|
msgid "The selected content source and lifecycle environment do not match"
|
|
4467
4575
|
msgstr ""
|
|
4468
4576
|
|
|
@@ -4525,6 +4633,9 @@ msgstr ""
|
|
|
4525
4633
|
msgid "There's no running synchronization for this smart proxy."
|
|
4526
4634
|
msgstr ""
|
|
4527
4635
|
|
|
4636
|
+
msgid "This API endpoint is only valid for Pulp 3 repositories."
|
|
4637
|
+
msgstr ""
|
|
4638
|
+
|
|
4528
4639
|
msgid "This Host is not currently registered with subscription-manager."
|
|
4529
4640
|
msgstr ""
|
|
4530
4641
|
|
|
@@ -4663,10 +4774,13 @@ msgstr ""
|
|
|
4663
4774
|
msgid "Unable to detect puppet path"
|
|
4664
4775
|
msgstr ""
|
|
4665
4776
|
|
|
4666
|
-
msgid "Unable to export, 'pulp_export_destination' setting is not a
|
|
4777
|
+
msgid "Unable to export, 'pulp_export_destination' setting is not set to a valid directory."
|
|
4667
4778
|
msgstr ""
|
|
4668
4779
|
|
|
4669
|
-
msgid "Unable to export
|
|
4780
|
+
msgid "Unable to export. 'pulp_export_destination' setting is not a writable directory."
|
|
4781
|
+
msgstr ""
|
|
4782
|
+
|
|
4783
|
+
msgid "Unable to export. 'pulpcore_export_destination' setting is not set to a valid directory."
|
|
4670
4784
|
msgstr ""
|
|
4671
4785
|
|
|
4672
4786
|
msgid "Unable to reassign activation_keys. Please check activation_key_content_view_id and activation_key_environment_id."
|
|
@@ -4879,6 +4993,12 @@ msgstr ""
|
|
|
4879
4993
|
msgid "Updating Package..."
|
|
4880
4994
|
msgstr ""
|
|
4881
4995
|
|
|
4996
|
+
msgid "Updating System Purpose for host"
|
|
4997
|
+
msgstr ""
|
|
4998
|
+
|
|
4999
|
+
msgid "Updating System Purpose for host %s"
|
|
5000
|
+
msgstr ""
|
|
5001
|
+
|
|
4882
5002
|
msgid "Updating package group..."
|
|
4883
5003
|
msgstr ""
|
|
4884
5004
|
|
|
@@ -4933,9 +5053,15 @@ msgstr ""
|
|
|
4933
5053
|
msgid "Usage Type"
|
|
4934
5054
|
msgstr ""
|
|
4935
5055
|
|
|
5056
|
+
msgid "Usage of host"
|
|
5057
|
+
msgstr ""
|
|
5058
|
+
|
|
4936
5059
|
msgid "Use remote execution by default"
|
|
4937
5060
|
msgstr ""
|
|
4938
5061
|
|
|
5062
|
+
msgid "Used to determine download concurrency of the repository in pulp3. Use value less than 20. Defaults to 10"
|
|
5063
|
+
msgstr ""
|
|
5064
|
+
|
|
4939
5065
|
msgid "User '%s' did not specify an organization ID and does not have a default organization."
|
|
4940
5066
|
msgstr ""
|
|
4941
5067
|
|
|
@@ -4960,6 +5086,15 @@ msgstr ""
|
|
|
4960
5086
|
msgid "Value must either be a boolean or 'default' for 'enabled'"
|
|
4961
5087
|
msgstr ""
|
|
4962
5088
|
|
|
5089
|
+
msgid "Verify checksum"
|
|
5090
|
+
msgstr ""
|
|
5091
|
+
|
|
5092
|
+
msgid "Verify checksum for one or more products"
|
|
5093
|
+
msgstr ""
|
|
5094
|
+
|
|
5095
|
+
msgid "Verify checksum of repository contents"
|
|
5096
|
+
msgstr ""
|
|
5097
|
+
|
|
4963
5098
|
msgid "Version"
|
|
4964
5099
|
msgstr ""
|
|
4965
5100
|
|
|
@@ -4975,7 +5110,7 @@ msgstr ""
|
|
|
4975
5110
|
msgid "Virtual"
|
|
4976
5111
|
msgstr ""
|
|
4977
5112
|
|
|
4978
|
-
msgid "When Simple Content Access is enabled, hosts
|
|
5113
|
+
msgid "When Simple Content Access is enabled, hosts are not required to have subscriptions attached to access repositories."
|
|
4979
5114
|
msgstr ""
|
|
4980
5115
|
|
|
4981
5116
|
msgid "When registering a host via subscription-manager, force use the specified fact (in the form of 'fact.fact')"
|
|
@@ -5044,6 +5179,9 @@ msgstr ""
|
|
|
5044
5179
|
msgid "You currently don't have any Content Views."
|
|
5045
5180
|
msgstr ""
|
|
5046
5181
|
|
|
5182
|
+
msgid "You currently don't have any repositories to add to this content view."
|
|
5183
|
+
msgstr ""
|
|
5184
|
+
|
|
5047
5185
|
msgid "You do not have permissions to delete %s"
|
|
5048
5186
|
msgstr ""
|
|
5049
5187
|
|
|
@@ -5455,9 +5593,6 @@ msgstr ""
|
|
|
5455
5593
|
msgid "if true, Katello will verify the upstream url's SSL certifcates are signed by a trusted CA"
|
|
5456
5594
|
msgstr ""
|
|
5457
5595
|
|
|
5458
|
-
msgid "if true, the repositories will be automatically enabled on a registered host subscribed to this product. Default: true"
|
|
5459
|
-
msgstr ""
|
|
5460
|
-
|
|
5461
5596
|
msgid "if true, will ignore the globally configured proxy when syncing"
|
|
5462
5597
|
msgstr ""
|
|
5463
5598
|
|
|
@@ -5530,6 +5665,9 @@ msgstr ""
|
|
|
5530
5665
|
msgid "maximum size of each ISO in MB"
|
|
5531
5666
|
msgstr ""
|
|
5532
5667
|
|
|
5668
|
+
msgid "maximum size of each ISO in MB. Relevant only for Pulp 2 repositories"
|
|
5669
|
+
msgstr ""
|
|
5670
|
+
|
|
5533
5671
|
msgid "may not be less than the number of hosts associated with the host collection."
|
|
5534
5672
|
msgstr ""
|
|
5535
5673
|
|
|
@@ -5803,6 +5941,9 @@ msgstr ""
|
|
|
5803
5941
|
msgid "the uuid of the puppet module to associate"
|
|
5804
5942
|
msgstr ""
|
|
5805
5943
|
|
|
5944
|
+
msgid "true if the export api is pulp3 ready and usable. This API is intended for use by hammer-cli only."
|
|
5945
|
+
msgstr ""
|
|
5946
|
+
|
|
5806
5947
|
msgid "true if the latest version of the component's content view is desired"
|
|
5807
5948
|
msgstr ""
|
|
5808
5949
|
|