katello 3.17.0 → 3.18.0
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 +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/capsule_content_controller.rb +2 -2
- data/app/controllers/katello/api/v2/content_credentials_controller.rb +1 -8
- data/app/controllers/katello/api/v2/content_export_incrementals_controller.rb +98 -0
- data/app/controllers/katello/api/v2/content_exports_controller.rb +84 -0
- data/app/controllers/katello/api/v2/content_imports_controller.rb +59 -0
- data/app/controllers/katello/api/v2/content_view_components_controller.rb +31 -14
- data/app/controllers/katello/api/v2/content_view_filters_controller.rb +17 -8
- 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 -71
- data/app/controllers/katello/api/v2/content_views_controller.rb +37 -26
- 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/host_debs_controller.rb +1 -0
- data/app/controllers/katello/api/v2/host_errata_controller.rb +2 -2
- data/app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb +35 -6
- data/app/controllers/katello/api/v2/products_bulk_actions_controller.rb +1 -1
- data/app/controllers/katello/api/v2/products_controller.rb +9 -9
- data/app/controllers/katello/api/v2/repositories_bulk_actions_controller.rb +1 -1
- data/app/controllers/katello/api/v2/repositories_controller.rb +10 -5
- data/app/controllers/katello/api/v2/repository_sets_controller.rb +24 -14
- 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 +19 -5
- data/app/controllers/katello/concerns/api/v2/bulk_hosts_extensions.rb +22 -18
- 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/controllers/katello/concerns/registration_controller_extensions.rb +16 -0
- 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/helpers/smart_proxy_sync_history_helper.rb +24 -0
- data/app/lib/actions/katello/applicability/hosts/bulk_generate.rb +6 -2
- data/app/lib/actions/katello/capsule_content/sync.rb +1 -1
- data/app/lib/actions/katello/capsule_content/sync_capsule.rb +16 -7
- data/app/lib/actions/katello/content_view/promote_to_environment.rb +1 -1
- data/app/lib/actions/katello/content_view/publish.rb +9 -9
- data/app/lib/actions/katello/content_view_version/import.rb +8 -13
- data/app/lib/actions/katello/content_view_version/import_library.rb +17 -0
- data/app/lib/actions/katello/content_view_version/incremental_update.rb +18 -3
- data/app/lib/actions/katello/host/hypervisors_update.rb +18 -0
- data/app/lib/actions/katello/host/update_system_purpose.rb +31 -0
- data/app/lib/actions/katello/host/upload_package_profile.rb +3 -1
- data/app/lib/actions/katello/host/upload_profiles.rb +8 -6
- 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 +4 -1
- data/app/lib/actions/katello/repository/remove_content.rb +1 -1
- data/app/lib/actions/katello/repository/sync.rb +3 -1
- data/app/lib/actions/katello/repository/update.rb +5 -1
- data/app/lib/actions/katello/repository/upload_files.rb +1 -0
- data/app/lib/actions/middleware/record_smart_proxy_sync_history.rb +15 -0
- data/app/lib/actions/pulp/consumer/sync_capsule.rb +4 -2
- data/app/lib/actions/pulp/repository/distributor_publish.rb +1 -1
- data/app/lib/actions/pulp3/capsule_content/sync.rb +1 -0
- data/app/lib/actions/pulp3/content_migration.rb +10 -0
- data/app/lib/actions/pulp3/content_migration_presenter.rb +59 -0
- 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 +7 -1
- data/app/lib/actions/pulp3/content_view_version/import.rb +7 -3
- data/app/lib/actions/pulp3/import_migration.rb +6 -1
- data/app/lib/actions/pulp3/orchestration/content_view_version/copy_version_units_to_library.rb +2 -1
- data/app/lib/actions/pulp3/orchestration/content_view_version/export.rb +38 -14
- data/app/lib/actions/pulp3/orchestration/content_view_version/export_library.rb +60 -0
- data/app/lib/actions/pulp3/orchestration/content_view_version/import.rb +16 -10
- data/app/lib/actions/pulp3/orchestration/repository/generate_metadata.rb +4 -1
- data/app/lib/actions/pulp3/orchestration/repository/import_upload.rb +16 -3
- data/app/lib/actions/pulp3/repository/commit_upload.rb +2 -1
- data/app/lib/actions/pulp3/repository/copy_content.rb +1 -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/actions/pulp3/repository/save_version.rb +1 -1
- data/app/lib/actions/pulp3/repository/upload_tag.rb +18 -0
- 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/content_view_filter.rb +15 -0
- data/app/models/katello/authorization/content_view_version.rb +25 -2
- data/app/models/katello/authorization/content_view_version_export_history.rb +1 -1
- 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/organization.rb +8 -0
- data/app/models/katello/authorization/sync_plan.rb +16 -0
- data/app/models/katello/concerns/operatingsystem_extensions.rb +2 -0
- data/app/models/katello/concerns/organization_extensions.rb +4 -5
- data/app/models/katello/concerns/smart_proxy_extensions.rb +6 -4
- data/app/models/katello/content_migration_progress.rb +4 -0
- data/app/models/katello/content_view.rb +30 -4
- data/app/models/katello/content_view_component.rb +2 -0
- data/app/models/katello/content_view_filter.rb +5 -0
- data/app/models/katello/content_view_history.rb +2 -1
- data/app/models/katello/content_view_package_filter.rb +1 -1
- data/app/models/katello/content_view_puppet_module.rb +8 -0
- data/app/models/katello/content_view_repository.rb +13 -1
- data/app/models/katello/content_view_version_export_history.rb +8 -1
- 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/ping.rb +8 -3
- data/app/models/katello/repository.rb +33 -0
- data/app/models/katello/root_repository.rb +26 -1
- data/app/models/katello/smart_proxy_sync_history.rb +8 -0
- 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/api/docker.rb +4 -0
- data/app/services/katello/pulp3/content_view_version/export.rb +125 -8
- data/app/services/katello/pulp3/content_view_version/import.rb +39 -34
- data/app/services/katello/pulp3/content_view_version/import_export_common.rb +6 -16
- data/app/services/katello/pulp3/content_view_version/import_validator.rb +114 -0
- data/app/services/katello/pulp3/deb.rb +38 -0
- data/app/services/katello/pulp3/docker_manifest.rb +1 -0
- data/app/services/katello/pulp3/docker_tag.rb +1 -0
- data/app/services/katello/pulp3/migration.rb +51 -10
- data/app/services/katello/pulp3/pulp_content_unit.rb +5 -0
- data/app/services/katello/pulp3/repository.rb +10 -4
- 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 +9 -0
- data/app/services/katello/pulp3/repository/yum.rb +14 -9
- data/app/services/katello/pulp3/repository_mirror.rb +9 -4
- data/app/services/katello/pulp3/task.rb +4 -0
- data/app/services/katello/pulp3/task_group.rb +4 -0
- data/app/services/katello/repository_type.rb +2 -1
- data/app/services/katello/smart_proxy_helper.rb +9 -0
- data/app/views/dashboard/_subscription_widget.html.erb +0 -5
- data/app/views/foreman/hosts/_registration.html.erb +12 -0
- data/app/views/katello/api/v2/content_view_version_export_histories/show.json.rabl +1 -1
- data/app/views/katello/api/v2/content_views/base.json.rabl +1 -0
- data/app/views/katello/api/v2/repositories/base.json.rabl +1 -1
- data/app/views/katello/layouts/react.html.erb +3 -2
- data/app/views/overrides/activation_keys/_host_tab_pane.html.erb +1 -5
- data/app/views/overrides/organizations/_index_row_override.html.erb +1 -1
- data/config/routes/api/v2.rb +24 -2
- data/config/routes/overrides.rb +1 -0
- data/db/migrate/20200929200357_create_katello_smart_proxy_sync_history.rb +13 -0
- 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/migrate/20201021150008_add_import_only_to_katello_content_view.rb +5 -0
- data/db/migrate/20201119211133_pulp3_migration_progress.rb +9 -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/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-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/content/content-host-debs-installed.controller.js +2 -42
- 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-views/content-views.controller.js +6 -2
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-details.controller.js +12 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details.html +7 -7
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-info.html +7 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/new/content-view-new.controller.js +17 -3
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/new/views/content-view-new.html +16 -2
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/views/content-views.html +5 -0
- 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 +92 -19
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/de.po +17 -20
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/es.po +17 -24
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/fr.po +1292 -1170
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/it.po +17 -20
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ja.po +858 -807
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ko.po +18 -19
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/pt_BR.po +17 -24
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ru.po +17 -18
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/zh_CN.po +986 -971
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/zh_TW.po +19 -20
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/translations.js +9 -9
- 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/products/details/repositories/repository-types.service.js +8 -1
- 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 +2 -0
- data/lib/katello/permission_creator.rb +98 -69
- data/lib/katello/permissions/host_permissions.rb +1 -0
- data/lib/katello/plugin.rb +10 -2
- data/lib/katello/repository_types/deb.rb +9 -1
- data/lib/katello/tasks/pulp3_migration.rake +17 -3
- data/lib/katello/tasks/pulp3_migration_abort.rake +22 -0
- data/lib/katello/tasks/pulp3_migration_stats.rake +41 -0
- data/lib/katello/tasks/receptor/extract_orgs.rake +1 -1
- 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 +51 -44
- data/locale/bn/katello.po +279 -55
- data/locale/cs/katello.po +278 -51
- data/locale/de/katello.po +279 -52
- data/locale/en/katello.po +278 -49
- data/locale/es/katello.po +279 -51
- data/locale/fr/katello.po +279 -51
- data/locale/gu/katello.po +279 -55
- data/locale/hi/katello.po +279 -55
- data/locale/it/katello.po +279 -51
- data/locale/ja/katello.po +279 -52
- data/locale/katello.pot +1379 -971
- data/locale/kn/katello.po +279 -55
- data/locale/ko/katello.po +279 -51
- data/locale/mr/katello.po +279 -55
- data/locale/or/katello.po +279 -55
- data/locale/pa/katello.po +279 -55
- data/locale/pt/katello.po +278 -52
- data/locale/pt_BR/katello.po +279 -51
- data/locale/ru/katello.po +279 -51
- data/locale/ta/katello.po +279 -55
- data/locale/te/katello.po +279 -55
- data/locale/zh_CN/katello.po +279 -51
- data/locale/zh_TW/katello.po +279 -52
- 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 +29 -19
- 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
- data/webpack/test-utils/react-testing-lib-wrapper.js +3 -0
- metadata +74 -13
- data/webpack/__mocks__/foremanReact/components/common/Fill/GlobalFill.js +0 -3
@@ -28,6 +28,7 @@ Foreman::AccessControl.permission(:edit_hosts).actions.concat [
|
|
28
28
|
'katello/api/v2/hosts_bulk_actions/release_version',
|
29
29
|
'katello/api/v2/hosts_bulk_actions/traces',
|
30
30
|
'katello/api/v2/hosts_bulk_actions/resolve_traces',
|
31
|
+
'katello/api/v2/hosts_bulk_actions/system_purpose',
|
31
32
|
'katello/api/rhsm/candlepin_dynflow_proxy/upload_package_profile',
|
32
33
|
'katello/api/rhsm/candlepin_dynflow_proxy/upload_profiles',
|
33
34
|
'katello/api/rhsm/candlepin_dynflow_proxy/deb_package_profile',
|
data/lib/katello/plugin.rb
CHANGED
@@ -3,7 +3,7 @@ require 'katello/repository_types.rb'
|
|
3
3
|
require 'katello/host_status_manager.rb'
|
4
4
|
# rubocop:disable Metrics/BlockLength
|
5
5
|
Foreman::Plugin.register :katello do
|
6
|
-
requires_foreman '>=
|
6
|
+
requires_foreman '>= 2.3'
|
7
7
|
|
8
8
|
sub_menu :top_menu, :content_menu, :caption => N_('Content'),
|
9
9
|
:icon => 'fa fa-book', :after => :monitor_menu do
|
@@ -280,6 +280,14 @@ Foreman::Plugin.register :katello do
|
|
280
280
|
extend_rabl_template 'api/v2/smart_proxies/main', 'katello/api/v2/smart_proxies/pulp_info'
|
281
281
|
extend_rabl_template 'api/v2/hosts/show', 'katello/api/v2/hosts/host_collections'
|
282
282
|
|
283
|
+
# Extend Global Registration endpoint
|
284
|
+
extend_allowed_registration_vars :activation_key
|
285
|
+
|
286
|
+
# Extend Global Registration UI
|
287
|
+
extend_page 'registration/_form' do |cx|
|
288
|
+
cx.add_pagelet :global_registration, name: N_('Katello'), partial: 'foreman/hosts/registration', priority: 100, id: 'katello'
|
289
|
+
end
|
290
|
+
|
283
291
|
extend_page "smart_proxies/show" do |cx|
|
284
292
|
cx.add_pagelet :details_content,
|
285
293
|
:name => _('Storage'),
|
@@ -355,7 +363,7 @@ Foreman::Plugin.register :katello do
|
|
355
363
|
role 'Register hosts', [
|
356
364
|
:view_hostgroups, :view_activation_keys, :view_hosts,
|
357
365
|
:create_hosts, :edit_hosts, :destroy_hosts,
|
358
|
-
:view_content_views, :
|
366
|
+
:view_content_views, :view_content_credentials, :view_subscriptions,
|
359
367
|
:attach_subscriptions, :view_host_collections,
|
360
368
|
:view_organizations, :view_lifecycle_environments, :view_products,
|
361
369
|
:view_locations, :view_domains, :view_architectures,
|
@@ -1,6 +1,14 @@
|
|
1
1
|
Katello::RepositoryTypeManager.register(::Katello::Repository::DEB_TYPE) do
|
2
2
|
service_class Katello::Pulp::Repository::Deb
|
3
|
+
pulp3_service_class Katello::Pulp3::Repository::Apt
|
4
|
+
pulp3_api_class Katello::Pulp3::Api::Apt
|
5
|
+
pulp3_plugin 'pulp_deb'
|
3
6
|
prevent_unneeded_metadata_publish
|
7
|
+
|
4
8
|
default_managed_content_type Katello::Deb
|
5
|
-
content_type Katello::Deb,
|
9
|
+
content_type Katello::Deb,
|
10
|
+
:pulp2_service_class => ::Katello::Pulp::Deb,
|
11
|
+
:pulp3_service_class => ::Katello::Pulp3::Deb,
|
12
|
+
:removable => true,
|
13
|
+
:uploadable => true
|
6
14
|
end
|
@@ -3,11 +3,25 @@ load "#{Katello::Engine.root}/lib/katello/tasks/common.rake"
|
|
3
3
|
namespace :katello do
|
4
4
|
desc "Runs a Pulp 2 to 3 Content Migration for supported types. May be run multiple times. Use wait=false to immediately return with a task url."
|
5
5
|
task :pulp3_migration => ["environment", "disable_dynflow", "check_ping"] do
|
6
|
-
|
6
|
+
puts "Starting task."
|
7
|
+
SmartProxy.pulp_primary.refresh
|
7
8
|
|
8
|
-
|
9
|
+
reimport_all = ::Foreman::Cast.to_bool(ENV['reimport_all'])
|
10
|
+
wait = ::Foreman::Cast.to_bool(ENV['wait'] || 'true')
|
11
|
+
preserve_output = ::Foreman::Cast.to_bool(ENV['preserve_output'])
|
12
|
+
|
13
|
+
task = ForemanTasks.async_task(Actions::Pulp3::ContentMigration, SmartProxy.pulp_primary, reimport_all: reimport_all)
|
14
|
+
|
15
|
+
if wait
|
16
|
+
clear_count = nil
|
9
17
|
until !task.pending? || task.paused?
|
10
|
-
|
18
|
+
$stdout.print("\r#{' ' * clear_count}\r") if clear_count && !preserve_output #clear the line before printing
|
19
|
+
$stdout.print("\n") if preserve_output
|
20
|
+
message = "#{Time.now.to_s}: #{task.humanized[:output]}"
|
21
|
+
clear_count = message.length + 1
|
22
|
+
$stdout.print(message)
|
23
|
+
|
24
|
+
sleep(10)
|
11
25
|
task = ForemanTasks::Task.find(task.id)
|
12
26
|
end
|
13
27
|
|
@@ -0,0 +1,22 @@
|
|
1
|
+
namespace :katello do
|
2
|
+
desc "Cancels all running Pulp 2 to 3 migration tasks."
|
3
|
+
task :pulp3_migration_abort => ["environment", "disable_dynflow"] do
|
4
|
+
migration_tasks = ForemanTasks::Task::DynflowTask.where(:label => "Actions::Pulp3::ContentMigration").where.not(:state => ["stopped", "paused"])
|
5
|
+
cancelled_tasks_count = 0
|
6
|
+
migration_tasks.each do |task|
|
7
|
+
cancelled_task = false
|
8
|
+
task.execution_plan.steps.each do |_number, step|
|
9
|
+
if step.cancellable? && step.is_a?(Dynflow::ExecutionPlan::Steps::RunStep)
|
10
|
+
::ForemanTasks.dynflow.world.event(task.execution_plan.id, step.id, Dynflow::Action::Cancellable::Cancel)
|
11
|
+
cancelled_task = true
|
12
|
+
end
|
13
|
+
end
|
14
|
+
if ::Katello::ContentMigrationProgress.where(:task_id => task.id).update_all(:canceled => true) > 0
|
15
|
+
cancelled_task = true
|
16
|
+
end
|
17
|
+
cancelled_tasks_count += 1 if cancelled_task
|
18
|
+
end
|
19
|
+
|
20
|
+
puts _("\e[33mCancelled #{cancelled_tasks_count} tasks.\e[0m")
|
21
|
+
end
|
22
|
+
end
|
@@ -0,0 +1,41 @@
|
|
1
|
+
namespace :katello do
|
2
|
+
desc "Retrieve Pulp 2 -> Pulp 3 content migration stats"
|
3
|
+
task :pulp3_migration_stats => [:environment] do
|
4
|
+
User.current = User.anonymous_admin
|
5
|
+
|
6
|
+
migrated_rpm_count = ::Katello::Rpm.where('pulp_id LIKE ?', '%/pulp/api/v3/content/rpm/packages/%').
|
7
|
+
or(::Katello::Rpm.where.not(migrated_pulp3_href: nil)).count
|
8
|
+
migrated_erratum_count = ::Katello::RepositoryErratum.where.not(erratum_pulp3_href: nil).count
|
9
|
+
migrated_repo_count = ::Katello::Repository.where.not(version_href: nil).count
|
10
|
+
migratable_repo_count = ::Katello::Repository.count - ::Katello::Repository.puppet_type.count -
|
11
|
+
::Katello::Repository.ostree_type.count - ::Katello::Repository.deb_type.count
|
12
|
+
|
13
|
+
on_demand_rpm_count = Katello::RepositoryRpm.where(:repository_id => Katello::Repository.yum_type.on_demand).distinct.count
|
14
|
+
on_demand_unmigrated_rpm_count = on_demand_rpm_count - migrated_rpm_count
|
15
|
+
immediate_unmigrated_rpm_count = ::Katello::Rpm.count - migrated_rpm_count - on_demand_unmigrated_rpm_count
|
16
|
+
|
17
|
+
# On Demand RPMs: (6.46E-04)*(#RPMs) + -3.22
|
18
|
+
# Immediate RPMs: (9.39E-04)*(#RPMs) + -3
|
19
|
+
# Repositories: 0.0746*(#Repos) + -2.07
|
20
|
+
migration_minutes = (0.000646 * on_demand_unmigrated_rpm_count - 3.22 +
|
21
|
+
0.000943 * immediate_unmigrated_rpm_count - 3 +
|
22
|
+
0.0746 * migratable_repo_count).to_i
|
23
|
+
hours = (migration_minutes / 60) % 60
|
24
|
+
minutes = migration_minutes % 60
|
25
|
+
|
26
|
+
puts
|
27
|
+
puts "Migrated/Total RPMs: #{migrated_rpm_count}/#{::Katello::Rpm.count}"
|
28
|
+
puts "Migrated/Total errata: #{migrated_erratum_count}/#{::Katello::RepositoryErratum.count}"
|
29
|
+
puts "Migrated/Total repositories: #{migrated_repo_count}/#{migratable_repo_count}"
|
30
|
+
puts
|
31
|
+
# The timing formulas go negative if the amount of content is negligibly small
|
32
|
+
if migration_minutes >= 5
|
33
|
+
puts "Estimated migration time based on yum content: #{hours} hours, #{minutes} minutes"
|
34
|
+
else
|
35
|
+
puts "Estimated migration time based on yum content: fewer than 5 minutes"
|
36
|
+
end
|
37
|
+
puts
|
38
|
+
puts "\e[33mNote:\e[0m ensure there is sufficient storage space for /var/lib/pulp/published to double in size before starting the migration process."
|
39
|
+
puts "Check the size of /var/lib/pulp/published with 'du -sh /var/lib/pulp/published/'"
|
40
|
+
end
|
41
|
+
end
|
@@ -1,7 +1,7 @@
|
|
1
1
|
namespace :katello do
|
2
2
|
namespace :receptor do
|
3
3
|
desc 'Extract Organization details for Receptor and write to OUTPUT_FILE.'
|
4
|
-
task :extract_orgs => ["
|
4
|
+
task :extract_orgs => ["dynflow:client", "check_ping"] do
|
5
5
|
output_file = ENV['OUTPUT_FILE']
|
6
6
|
|
7
7
|
unless output_file
|
@@ -27,7 +27,8 @@ namespace :katello do
|
|
27
27
|
system("sudo systemctl stop 'pulpcore-worker@*' --all")
|
28
28
|
system("sudo runuser - postgres -c 'dropdb pulpcore'")
|
29
29
|
system("sudo runuser - postgres -c 'createdb pulpcore'")
|
30
|
-
|
30
|
+
|
31
|
+
Dir.chdir("/tmp") do
|
31
32
|
fail "\e[31mCannot migrate Pulp3 database\e[0m\n\n" unless system("sudo -u pulp PULP_SETTINGS='/etc/pulp/settings.py' DJANGO_SETTINGS_MODULE='pulpcore.app.settings' python3-django-admin migrate --no-input")
|
32
33
|
puts "\e[33mRecreating Admin User\e[0m\n\n"
|
33
34
|
system("sudo -u pulp PULP_SETTINGS='/etc/pulp/settings.py' DJANGO_SETTINGS_MODULE='pulpcore.app.settings' python3-django-admin reset-admin-password --password password")
|
@@ -0,0 +1,18 @@
|
|
1
|
+
namespace :katello do
|
2
|
+
namespace :upgrades do
|
3
|
+
namespace '3.18' do
|
4
|
+
task :add_cvv_export_history_metadata => ['environment', 'check_ping'] do
|
5
|
+
smart_proxy = SmartProxy.pulp_primary!
|
6
|
+
|
7
|
+
Katello::ContentViewVersionExportHistory.includes(:content_view_version).where(metadata: nil).find_each do |export_history|
|
8
|
+
export = ::Katello::Pulp3::ContentViewVersion::Export.new(
|
9
|
+
content_view_version: export_history.content_view_version,
|
10
|
+
smart_proxy: smart_proxy
|
11
|
+
)
|
12
|
+
|
13
|
+
export_history.update(metadata: export.generate_metadata)
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
data/lib/katello/version.rb
CHANGED
data/locale/action_names.rb
CHANGED
@@ -1,70 +1,77 @@
|
|
1
1
|
# Autogenerated!
|
2
|
-
_("
|
3
|
-
_("
|
4
|
-
_("
|
5
|
-
_("
|
6
|
-
_("Fetch pxe files")
|
7
|
-
_("Discover")
|
8
|
-
_("Errata mail")
|
9
|
-
_("Delete")
|
10
|
-
_("Delete Package Group")
|
2
|
+
_("Action with sub plans")
|
3
|
+
_("Import facts")
|
4
|
+
_("Import Puppet classes")
|
5
|
+
_("Abstract async task")
|
11
6
|
_("Create")
|
12
|
-
_("Delete
|
13
|
-
_("
|
14
|
-
_("
|
15
|
-
_("Destroy")
|
16
|
-
_("Combined Profile Update")
|
17
|
-
_("Update release version for host")
|
18
|
-
_("Remove subscriptions")
|
19
|
-
_("Update Content Overrides")
|
20
|
-
_("Install package")
|
21
|
-
_("Update package")
|
22
|
-
_("Install package group")
|
23
|
-
_("Install Applicable Errata")
|
24
|
-
_("Attach subscriptions")
|
7
|
+
_("Delete Activation Key")
|
8
|
+
_("Bulk generate applicability for hosts")
|
9
|
+
_("Generate host applicability")
|
25
10
|
_("Update")
|
11
|
+
_("Generate repository applicability")
|
12
|
+
_("Synchronize smart proxy")
|
13
|
+
_("Sync capsule")
|
14
|
+
_("Delete")
|
15
|
+
_("Errata mail")
|
16
|
+
_("Incremental Update of Content View Version(s) ")
|
17
|
+
_("Promote")
|
18
|
+
_("Promotion to Environment")
|
19
|
+
_("Publish")
|
20
|
+
_("Remove Versions and Associations")
|
21
|
+
_("Remove from Environment")
|
22
|
+
_("Remove Version")
|
23
|
+
_("Export")
|
24
|
+
_("Import Content View Version")
|
25
|
+
_("Import Default Content View")
|
26
|
+
_("Republish Version Repositories")
|
27
|
+
_("Delete Lifecycle Environment")
|
28
|
+
_("Publish Lifecycle Environment Repositories")
|
29
|
+
_("Attach subscriptions")
|
26
30
|
_("Auto attach subscriptions")
|
27
31
|
_("Destroy Content Host")
|
32
|
+
_("Install Applicable Errata")
|
28
33
|
_("Install erratum")
|
29
34
|
_("Hypervisors")
|
30
35
|
_("Hypervisors update")
|
36
|
+
_("Install package")
|
31
37
|
_("Remove package")
|
38
|
+
_("Update package")
|
39
|
+
_("Install package group")
|
32
40
|
_("Remove package group")
|
33
41
|
_("Update for host")
|
42
|
+
_("Update Content Overrides")
|
43
|
+
_("Update release version for host")
|
44
|
+
_("Remove subscriptions")
|
34
45
|
_("Package Profile Update")
|
35
|
-
_("
|
46
|
+
_("Combined Profile Update")
|
47
|
+
_("Destroy")
|
48
|
+
_("Product Create")
|
49
|
+
_("Delete Product")
|
50
|
+
_("Reindex subscriptions")
|
36
51
|
_("Update http proxy")
|
37
|
-
_("
|
52
|
+
_("Delete Package Group")
|
53
|
+
_("Discover")
|
54
|
+
_("Fetch pxe files")
|
38
55
|
_("Filtered index content")
|
56
|
+
_("Index content")
|
39
57
|
_("Index errata")
|
58
|
+
_("Upload into")
|
59
|
+
_("Index module streams")
|
60
|
+
_("Index package groups")
|
40
61
|
_("Instance update")
|
41
|
-
_("Import facts")
|
42
|
-
_("Import Puppet classes")
|
43
|
-
_("Action with sub plans")
|
44
62
|
_("Remove Content")
|
45
63
|
_("Synchronize")
|
46
64
|
_("Update content urls")
|
47
65
|
_("Update http proxy details")
|
48
66
|
_("Update redhat repository")
|
49
67
|
_("Upload errata into")
|
50
|
-
_("
|
68
|
+
_("Verify checksum")
|
51
69
|
_("Disable")
|
52
70
|
_("Enable")
|
53
71
|
_("Run Sync Plan:")
|
54
|
-
_("
|
55
|
-
_("
|
72
|
+
_("Create Package Group")
|
73
|
+
_("Copy version units to library")
|
74
|
+
_("Export Library")
|
75
|
+
_("Import")
|
76
|
+
_("Updating System Purpose for host")
|
56
77
|
_("Incremental Update")
|
57
|
-
_("Republish Version Repositories")
|
58
|
-
_("Remove Version")
|
59
|
-
_("Remove from Environment")
|
60
|
-
_("Remove Versions and Associations")
|
61
|
-
_("Promotion to Environment")
|
62
|
-
_("Publish")
|
63
|
-
_("Promote")
|
64
|
-
_("Incremental Update of Content View Version(s) ")
|
65
|
-
_("Sync capsule")
|
66
|
-
_("Synchronize smart proxy")
|
67
|
-
_("Generate repository applicability")
|
68
|
-
_("Bulk generate applicability for hosts")
|
69
|
-
_("Generate host applicability")
|
70
|
-
_("Delete Activation Key")
|
data/locale/bn/katello.po
CHANGED
@@ -20,6 +20,11 @@ msgstr ""
|
|
20
20
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
21
21
|
"X-Generator: Zanata 3.6.2\n"
|
22
22
|
|
23
|
+
msgid ""
|
24
|
+
"\n"
|
25
|
+
"* Product = '%{product}', Repository = '%{repository}', Repository Type = '%{repo_type}'"
|
26
|
+
msgstr ""
|
27
|
+
|
23
28
|
msgid " %{errata_count} Errata"
|
24
29
|
msgstr ""
|
25
30
|
|
@@ -404,6 +409,9 @@ msgstr ""
|
|
404
409
|
msgid "Action with sub plans"
|
405
410
|
msgstr ""
|
406
411
|
|
412
|
+
msgid "Activation Key(s)"
|
413
|
+
msgstr ""
|
414
|
+
|
407
415
|
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
408
416
|
msgid "Activation Keys"
|
409
417
|
msgstr "অ্যাক্টিভেশন-কি"
|
@@ -411,6 +419,9 @@ msgstr "অ্যাক্টিভেশন-কি"
|
|
411
419
|
msgid "Activation key ID"
|
412
420
|
msgstr ""
|
413
421
|
|
422
|
+
msgid "Activation key(s) for Subscription Manager. Required for CentOS and Red Hat Enterprise Linux. Multiple keys add separated by comma, example: key1,key2,key3."
|
423
|
+
msgstr ""
|
424
|
+
|
414
425
|
#, fuzzy
|
415
426
|
msgid "Activation keys and subscriptions can be managed"
|
416
427
|
msgstr "'%s' অ্যাক্টিভেশন-কি প্রস্তুত করা হয়েছে"
|
@@ -465,6 +476,9 @@ msgstr ""
|
|
465
476
|
msgid "Adding content units"
|
466
477
|
msgstr ""
|
467
478
|
|
479
|
+
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}"
|
480
|
+
msgstr ""
|
481
|
+
|
468
482
|
msgid "Addons"
|
469
483
|
msgstr ""
|
470
484
|
|
@@ -569,6 +583,9 @@ msgstr ""
|
|
569
583
|
msgid "Artifacts"
|
570
584
|
msgstr ""
|
571
585
|
|
586
|
+
msgid "Assign system purpose attributes on one or more hosts"
|
587
|
+
msgstr ""
|
588
|
+
|
572
589
|
msgid "Assign the %{count} host with no %{taxonomy_single} to %{taxonomy_name}"
|
573
590
|
msgid_plural "Assign all %{count} hosts with no %{taxonomy_single} to %{taxonomy_name}"
|
574
591
|
msgstr[0] ""
|
@@ -617,9 +634,6 @@ msgstr ""
|
|
617
634
|
msgid "Author"
|
618
635
|
msgstr ""
|
619
636
|
|
620
|
-
msgid "Auto Enablement may only be set on custom repositories."
|
621
|
-
msgstr ""
|
622
|
-
|
623
637
|
msgid "Auto Publish - Triggered by '%s'"
|
624
638
|
msgstr ""
|
625
639
|
|
@@ -842,6 +856,9 @@ msgstr ""
|
|
842
856
|
msgid "Cannot delete view while it exists in environments"
|
843
857
|
msgstr "ভিন্ন এনভায়রনমেন্টের মধ্যে উপস্থিত টেমপ্লেট পরিবর্তন করা সম্ভব নয়"
|
844
858
|
|
859
|
+
msgid "Cannot import a composite content view"
|
860
|
+
msgstr ""
|
861
|
+
|
845
862
|
msgid "Cannot import a custom subscription from a redhat product."
|
846
863
|
msgstr ""
|
847
864
|
|
@@ -897,12 +914,18 @@ msgstr ""
|
|
897
914
|
msgid "Cannot upload Container Image content."
|
898
915
|
msgstr ""
|
899
916
|
|
917
|
+
msgid "Cannot use this end point for importing to library. If you intented to upload to library, use the library endpoint."
|
918
|
+
msgstr ""
|
919
|
+
|
900
920
|
msgid "Cannot validate contents on non-yum/deb repositories."
|
901
921
|
msgstr ""
|
902
922
|
|
903
923
|
msgid "Check if a connection can be made to Red Hat Subscription Management."
|
904
924
|
msgstr ""
|
905
925
|
|
926
|
+
msgid "Check if the specified organization is eligible for Simple Content Access"
|
927
|
+
msgstr ""
|
928
|
+
|
906
929
|
msgid "Check services before actions"
|
907
930
|
msgstr ""
|
908
931
|
|
@@ -938,7 +961,7 @@ msgstr ""
|
|
938
961
|
msgid "Combined Profile Update for %s"
|
939
962
|
msgstr ""
|
940
963
|
|
941
|
-
msgid "Comma
|
964
|
+
msgid "Comma-separated list of tags to sync for Container Image repository"
|
942
965
|
msgstr ""
|
943
966
|
|
944
967
|
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
@@ -994,10 +1017,16 @@ msgstr ""
|
|
994
1017
|
msgid "Content Download URL"
|
995
1018
|
msgstr ""
|
996
1019
|
|
1020
|
+
msgid "Content Facet for host with id %s is non-existent. Skipping applicability calculation."
|
1021
|
+
msgstr ""
|
1022
|
+
|
997
1023
|
#, fuzzy
|
998
1024
|
msgid "Content Hosts"
|
999
1025
|
msgstr "তথ্য"
|
1000
1026
|
|
1027
|
+
msgid "Content Migration"
|
1028
|
+
msgstr ""
|
1029
|
+
|
1001
1030
|
msgid "Content Source"
|
1002
1031
|
msgstr ""
|
1003
1032
|
|
@@ -1049,9 +1078,15 @@ msgstr ""
|
|
1049
1078
|
msgid "Content View Version not set"
|
1050
1079
|
msgstr ""
|
1051
1080
|
|
1081
|
+
msgid "Content View Version specified in the metadata - '%{name}' already exists. If you wish to replace the existing version, delete %{name} and try again. "
|
1082
|
+
msgstr ""
|
1083
|
+
|
1052
1084
|
msgid "Content View and Environment not set for registration."
|
1053
1085
|
msgstr ""
|
1054
1086
|
|
1087
|
+
msgid "Content View id"
|
1088
|
+
msgstr ""
|
1089
|
+
|
1055
1090
|
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author bnin
|
1056
1091
|
msgid "Content Views"
|
1057
1092
|
msgstr "বিষয়বস্তুর রূপ"
|
@@ -1090,6 +1125,9 @@ msgstr ""
|
|
1090
1125
|
msgid "Content view numeric identifier"
|
1091
1126
|
msgstr ""
|
1092
1127
|
|
1128
|
+
msgid "Content view version export history identifier"
|
1129
|
+
msgstr ""
|
1130
|
+
|
1093
1131
|
msgid "Content view version identifier"
|
1094
1132
|
msgstr ""
|
1095
1133
|
|
@@ -1112,13 +1150,13 @@ msgstr ""
|
|
1112
1150
|
msgid "Copy an activation key"
|
1113
1151
|
msgstr "অ্যাক্টিভেশন-কি"
|
1114
1152
|
|
1153
|
+
msgid "Copy version units to library"
|
1154
|
+
msgstr ""
|
1155
|
+
|
1115
1156
|
#, fuzzy
|
1116
1157
|
msgid "Cores: %s"
|
1117
1158
|
msgstr "কারণ: %s"
|
1118
1159
|
|
1119
|
-
msgid "Could not calculate errata status, ensure host is registered and the katello-host-tools package is installed"
|
1120
|
-
msgstr ""
|
1121
|
-
|
1122
1160
|
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
1123
1161
|
msgid "Could not delete organization '%s'."
|
1124
1162
|
msgstr "'%s' প্রতিষ্ঠান মুছে ফেলা যায়নি।"
|
@@ -1129,6 +1167,12 @@ msgstr ""
|
|
1129
1167
|
msgid "Could not find %{count} errata. Only found: %{found}"
|
1130
1168
|
msgstr ""
|
1131
1169
|
|
1170
|
+
msgid "Could not find %{name} resource with id %{id}"
|
1171
|
+
msgstr ""
|
1172
|
+
|
1173
|
+
msgid "Could not find %{name} resources with ids %{ids}"
|
1174
|
+
msgstr ""
|
1175
|
+
|
1132
1176
|
msgid "Could not find Environment with ids: %s"
|
1133
1177
|
msgstr ""
|
1134
1178
|
|
@@ -1162,9 +1206,6 @@ msgstr ""
|
|
1162
1206
|
msgid "Couldn't find %{type} Filter with id %{id}"
|
1163
1207
|
msgstr ""
|
1164
1208
|
|
1165
|
-
msgid "Couldn't find Content Credential '%s'"
|
1166
|
-
msgstr ""
|
1167
|
-
|
1168
1209
|
#, fuzzy
|
1169
1210
|
msgid "Couldn't find ContentViewFilter with id=%s"
|
1170
1211
|
msgstr "'%s' id বিশিষ্ট উৎপাদন পাওয়া যায়নি"
|
@@ -1222,13 +1263,6 @@ msgstr "'%s' এনভায়রনমেন্ট পাওয়া যায়ন
|
|
1222
1263
|
msgid "Couldn't find errata ids '%s'"
|
1223
1264
|
msgstr "'%s' প্রতিষ্ঠান পাওয়া যায়নি"
|
1224
1265
|
|
1225
|
-
#, fuzzy
|
1226
|
-
msgid "Couldn't find gpg key '%s'"
|
1227
|
-
msgstr "GPG-কি '%s' সন্ধান করা যায়নি"
|
1228
|
-
|
1229
|
-
msgid "Couldn't find host '%s'"
|
1230
|
-
msgstr ""
|
1231
|
-
|
1232
1266
|
msgid "Couldn't find host collection '%s'"
|
1233
1267
|
msgstr ""
|
1234
1268
|
|
@@ -1243,10 +1277,6 @@ msgstr "'%s' প্রতিষ্ঠান পাওয়া যায়নি"
|
|
1243
1277
|
msgid "Couldn't find prior-environment '%s'"
|
1244
1278
|
msgstr "'%s' এনভায়রনমেন্ট পাওয়া যায়নি"
|
1245
1279
|
|
1246
|
-
#, fuzzy
|
1247
|
-
msgid "Couldn't find product '%s'"
|
1248
|
-
msgstr "'%s' উপলব্ধকারী পাওয়া যায়নি"
|
1249
|
-
|
1250
1280
|
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1251
1281
|
msgid "Couldn't find product with id '%s'"
|
1252
1282
|
msgstr "'%s' id বিশিষ্ট উৎপাদন পাওয়া যায়নি"
|
@@ -1255,30 +1285,13 @@ msgstr "'%s' id বিশিষ্ট উৎপাদন পাওয়া যা
|
|
1255
1285
|
msgid "Couldn't find repository '%s'"
|
1256
1286
|
msgstr "'%s' সংগ্রহস্থল পাওয়া যায়নি"
|
1257
1287
|
|
1258
|
-
#, fuzzy
|
1259
|
-
msgid "Couldn't find repository set with id '%s'."
|
1260
|
-
msgstr "'%s' সংগ্রহস্থল পাওয়া যায়নি"
|
1261
|
-
|
1262
1288
|
msgid "Couldn't find specified Content View and Lifecycle Environment."
|
1263
1289
|
msgstr ""
|
1264
1290
|
|
1265
|
-
msgid "Couldn't find ssl ca cert '%s'"
|
1266
|
-
msgstr ""
|
1267
|
-
|
1268
|
-
msgid "Couldn't find ssl client cert '%s'"
|
1269
|
-
msgstr ""
|
1270
|
-
|
1271
|
-
msgid "Couldn't find ssl client key '%s'"
|
1272
|
-
msgstr ""
|
1273
|
-
|
1274
1291
|
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
1275
1292
|
msgid "Couldn't find subject of synchronization"
|
1276
1293
|
msgstr "সুসংগতির জন্য প্রয়োজনীয় সামগ্রী পাওয়া যায়নি"
|
1277
1294
|
|
1278
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
1279
|
-
msgid "Couldn't find sync plan '%{plan}' in organization '%{org}'"
|
1280
|
-
msgstr "সুসংগতির পরিকল্পনা '%{plan}'-টি '%{org}' প্রতিষ্ঠানের মধ্যে পাওয়া যায়নি"
|
1281
|
-
|
1282
1295
|
msgid "Count"
|
1283
1296
|
msgstr ""
|
1284
1297
|
|
@@ -1349,6 +1362,9 @@ msgstr ""
|
|
1349
1362
|
msgid "Current organization not set."
|
1350
1363
|
msgstr ""
|
1351
1364
|
|
1365
|
+
msgid "Custom"
|
1366
|
+
msgstr ""
|
1367
|
+
|
1352
1368
|
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
1353
1369
|
msgid "Custom Content Repositories"
|
1354
1370
|
msgstr "স্বনির্ধারিত তথ্য সংগ্রহস্থল"
|
@@ -1562,9 +1578,15 @@ msgstr ""
|
|
1562
1578
|
msgid "Description of the repository"
|
1563
1579
|
msgstr ""
|
1564
1580
|
|
1581
|
+
msgid "Designate this Content View for importing from upstream servers only. Defaults to false"
|
1582
|
+
msgstr ""
|
1583
|
+
|
1565
1584
|
msgid "Desired quantity of the pool"
|
1566
1585
|
msgstr ""
|
1567
1586
|
|
1587
|
+
msgid "Destination Server name"
|
1588
|
+
msgstr ""
|
1589
|
+
|
1568
1590
|
msgid "Destroy"
|
1569
1591
|
msgstr ""
|
1570
1592
|
|
@@ -1616,6 +1638,9 @@ msgstr ""
|
|
1616
1638
|
msgid "Directly setting package lists on composite content views is not allowed. Please update the components, then re-publish the composite."
|
1617
1639
|
msgstr ""
|
1618
1640
|
|
1641
|
+
msgid "Directory containing the exported Content View Version"
|
1642
|
+
msgstr ""
|
1643
|
+
|
1619
1644
|
msgid "Disable"
|
1620
1645
|
msgstr ""
|
1621
1646
|
|
@@ -1631,6 +1656,9 @@ msgstr ""
|
|
1631
1656
|
msgid "Disable simple content access for a manifest"
|
1632
1657
|
msgstr ""
|
1633
1658
|
|
1659
|
+
msgid "Disabling Simple Content Access failed for '%{subject}'."
|
1660
|
+
msgstr ""
|
1661
|
+
|
1634
1662
|
msgid "Disconnected mode"
|
1635
1663
|
msgstr ""
|
1636
1664
|
|
@@ -1715,6 +1743,9 @@ msgstr ""
|
|
1715
1743
|
msgid "Enabled Repositories"
|
1716
1744
|
msgstr ""
|
1717
1745
|
|
1746
|
+
msgid "Enabling Simple Content Access failed for '%{subject}'."
|
1747
|
+
msgstr ""
|
1748
|
+
|
1718
1749
|
msgid "End Date"
|
1719
1750
|
msgstr ""
|
1720
1751
|
|
@@ -1837,7 +1868,10 @@ msgstr ""
|
|
1837
1868
|
msgid "Export CSV"
|
1838
1869
|
msgstr ""
|
1839
1870
|
|
1840
|
-
msgid "Export
|
1871
|
+
msgid "Export Library"
|
1872
|
+
msgstr ""
|
1873
|
+
|
1874
|
+
msgid "Export a content view version. Relevant only for Pulp 2 repositories."
|
1841
1875
|
msgstr ""
|
1842
1876
|
|
1843
1877
|
msgid "Export a repository"
|
@@ -1846,9 +1880,15 @@ msgstr ""
|
|
1846
1880
|
msgid "Export as CSV"
|
1847
1881
|
msgstr ""
|
1848
1882
|
|
1883
|
+
msgid "Export history identifier used for incremental export. If not provided the most recent export history will be used."
|
1884
|
+
msgstr ""
|
1885
|
+
|
1849
1886
|
msgid "Export to ISO format"
|
1850
1887
|
msgstr ""
|
1851
1888
|
|
1889
|
+
msgid "Export to ISO format."
|
1890
|
+
msgstr ""
|
1891
|
+
|
1852
1892
|
msgid "Exported version"
|
1853
1893
|
msgstr ""
|
1854
1894
|
|
@@ -1992,10 +2032,6 @@ msgstr ""
|
|
1992
2032
|
msgid "GPG Key URL"
|
1993
2033
|
msgstr ""
|
1994
2034
|
|
1995
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
1996
|
-
msgid "GPG Keys"
|
1997
|
-
msgstr "GPG-কি"
|
1998
|
-
|
1999
2035
|
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author bnin
|
2000
2036
|
msgid "Generate and Download"
|
2001
2037
|
msgstr "প্রস্তুত করুন এবং ডাউনলোড করুন"
|
@@ -2103,6 +2139,9 @@ msgstr ""
|
|
2103
2139
|
msgid "Host content and subscription details"
|
2104
2140
|
msgstr ""
|
2105
2141
|
|
2142
|
+
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."
|
2143
|
+
msgstr ""
|
2144
|
+
|
2106
2145
|
msgid "Host did not finish content action in %s seconds. The task has been cancelled."
|
2107
2146
|
msgstr ""
|
2108
2147
|
|
@@ -2127,6 +2166,9 @@ msgstr ""
|
|
2127
2166
|
msgid "Host id to list applicable packages for"
|
2128
2167
|
msgstr ""
|
2129
2168
|
|
2169
|
+
msgid "Host was not found by the subscription UUID: '%s', this can happen if the host is registered already, but not to this Foreman"
|
2170
|
+
msgstr ""
|
2171
|
+
|
2130
2172
|
msgid "Host with ID %s already exists in the host collection."
|
2131
2173
|
msgstr ""
|
2132
2174
|
|
@@ -2281,6 +2323,9 @@ msgstr ""
|
|
2281
2323
|
msgid "Identifiers for Lifecycle Environment"
|
2282
2324
|
msgstr ""
|
2283
2325
|
|
2326
|
+
msgid "Identifies whether the repository should be disabled on a client with a non-matching OS version. Pass [] to enable regardless of OS version. Maximum length 1; allowed tags are: %s"
|
2327
|
+
msgstr ""
|
2328
|
+
|
2284
2329
|
msgid "If Autosearch is enabled, delay in milliseconds before executing searches while typing."
|
2285
2330
|
msgstr ""
|
2286
2331
|
|
@@ -2323,6 +2368,15 @@ msgstr ""
|
|
2323
2368
|
msgid "Immediate"
|
2324
2369
|
msgstr ""
|
2325
2370
|
|
2371
|
+
msgid "Import"
|
2372
|
+
msgstr ""
|
2373
|
+
|
2374
|
+
msgid "Import Content View Version"
|
2375
|
+
msgstr ""
|
2376
|
+
|
2377
|
+
msgid "Import Default Content View"
|
2378
|
+
msgstr ""
|
2379
|
+
|
2326
2380
|
#, fuzzy
|
2327
2381
|
msgid "Import Manifest"
|
2328
2382
|
msgstr "ইম্পোর্ট করুন"
|
@@ -2345,6 +2399,12 @@ msgstr ""
|
|
2345
2399
|
msgid "Import a Manifest using the manifest tab above."
|
2346
2400
|
msgstr ""
|
2347
2401
|
|
2402
|
+
msgid "Import a content view version"
|
2403
|
+
msgstr ""
|
2404
|
+
|
2405
|
+
msgid "Import a content view version to the library"
|
2406
|
+
msgstr ""
|
2407
|
+
|
2348
2408
|
#, fuzzy
|
2349
2409
|
msgid "Import facts"
|
2350
2410
|
msgstr "ইম্পোর্ট করুন"
|
@@ -2352,6 +2412,15 @@ msgstr "ইম্পোর্ট করুন"
|
|
2352
2412
|
msgid "Import uploads into a repository"
|
2353
2413
|
msgstr ""
|
2354
2414
|
|
2415
|
+
msgid "Import-only can not be changed after creation"
|
2416
|
+
msgstr ""
|
2417
|
+
|
2418
|
+
msgid "Import-only content views can not be published directly"
|
2419
|
+
msgstr ""
|
2420
|
+
|
2421
|
+
msgid "Import-only content views will be available in a future version."
|
2422
|
+
msgstr ""
|
2423
|
+
|
2355
2424
|
msgid "Importing manifest into '%{subject}' failed."
|
2356
2425
|
msgstr ""
|
2357
2426
|
|
@@ -2536,6 +2605,9 @@ msgstr ""
|
|
2536
2605
|
msgid "Invalid params provided - date_type must be one of %s"
|
2537
2606
|
msgstr ""
|
2538
2607
|
|
2608
|
+
msgid "Invalid path specified."
|
2609
|
+
msgstr ""
|
2610
|
+
|
2539
2611
|
msgid ""
|
2540
2612
|
"Invalid puppet module parameters specified. \\\n"
|
2541
2613
|
" Either 'uuid' or 'name' and 'author' must be specified."
|
@@ -2544,6 +2616,12 @@ msgstr ""
|
|
2544
2616
|
msgid "Invalid puppet module. Please make sure the puppet module contains a metadata.json file and is properly compressed."
|
2545
2617
|
msgstr ""
|
2546
2618
|
|
2619
|
+
msgid "Invalid usage for Pulp 2 repositories. Use export for Yum repositories"
|
2620
|
+
msgstr ""
|
2621
|
+
|
2622
|
+
msgid "Invalid usage for Pulp 3 repositories. Use hammer content-export for Yum repositories"
|
2623
|
+
msgstr ""
|
2624
|
+
|
2547
2625
|
msgid "Invalid value specified for Container Image repositories."
|
2548
2626
|
msgstr ""
|
2549
2627
|
|
@@ -2553,6 +2631,9 @@ msgstr ""
|
|
2553
2631
|
msgid "Invalid value specified for ignorable content. Permissible values %s"
|
2554
2632
|
msgstr ""
|
2555
2633
|
|
2634
|
+
msgid "Katello"
|
2635
|
+
msgstr ""
|
2636
|
+
|
2556
2637
|
msgid "Katello ID of local pool to update"
|
2557
2638
|
msgstr ""
|
2558
2639
|
|
@@ -2613,9 +2694,6 @@ msgstr ""
|
|
2613
2694
|
msgid "Learn more about adding Subscription Manifests"
|
2614
2695
|
msgstr ""
|
2615
2696
|
|
2616
|
-
msgid "Learn more about your overall subscription usage (opens in a new tab)"
|
2617
|
-
msgstr ""
|
2618
|
-
|
2619
2697
|
#, fuzzy
|
2620
2698
|
msgid "Library lifecycle environments may not be deleted."
|
2621
2699
|
msgstr "'%s' এনভায়রনমেন্ট মুছে ফেলা হয়েছে।"
|
@@ -2717,6 +2795,9 @@ msgstr ""
|
|
2717
2795
|
msgid "List errata available for the content host"
|
2718
2796
|
msgstr ""
|
2719
2797
|
|
2798
|
+
msgid "List export histories"
|
2799
|
+
msgstr ""
|
2800
|
+
|
2720
2801
|
msgid "List filter rules"
|
2721
2802
|
msgstr ""
|
2722
2803
|
|
@@ -2870,6 +2951,9 @@ msgstr ""
|
|
2870
2951
|
msgid "List srpms"
|
2871
2952
|
msgstr ""
|
2872
2953
|
|
2954
|
+
msgid "List subscriptions"
|
2955
|
+
msgstr ""
|
2956
|
+
|
2873
2957
|
msgid "List sync plans"
|
2874
2958
|
msgstr ""
|
2875
2959
|
|
@@ -2958,6 +3042,9 @@ msgstr "বার্তা"
|
|
2958
3042
|
msgid "Messaging connection"
|
2959
3043
|
msgstr ""
|
2960
3044
|
|
3045
|
+
msgid "Metadata taken from the upstream export history for this Content View Version"
|
3046
|
+
msgstr ""
|
3047
|
+
|
2961
3048
|
msgid "Mismatched"
|
2962
3049
|
msgstr ""
|
2963
3050
|
|
@@ -3097,6 +3184,9 @@ msgstr ""
|
|
3097
3184
|
msgid "No errors"
|
3098
3185
|
msgstr "কোনো ত্রুটি নেই"
|
3099
3186
|
|
3187
|
+
msgid "No existing export history was found to perform an incremental export. A full export must be performed"
|
3188
|
+
msgstr ""
|
3189
|
+
|
3100
3190
|
msgid "No file uploaded"
|
3101
3191
|
msgstr ""
|
3102
3192
|
|
@@ -3109,12 +3199,18 @@ msgstr ""
|
|
3109
3199
|
msgid "No hosts registered with subscription-manager found in selection."
|
3110
3200
|
msgstr ""
|
3111
3201
|
|
3202
|
+
msgid "No installed packages and/or enabled repositories have been reported by %s."
|
3203
|
+
msgstr ""
|
3204
|
+
|
3112
3205
|
msgid "No manifest file uploaded"
|
3113
3206
|
msgstr ""
|
3114
3207
|
|
3115
3208
|
msgid "No matching content views found"
|
3116
3209
|
msgstr ""
|
3117
3210
|
|
3211
|
+
msgid "No matching repositories found"
|
3212
|
+
msgstr ""
|
3213
|
+
|
3118
3214
|
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
3119
3215
|
msgid "No new packages installed"
|
3120
3216
|
msgstr "কোনো নতুন প্যাকেজ ইনস্টল করা হয়নি"
|
@@ -3257,6 +3353,9 @@ msgstr ""
|
|
3257
3353
|
msgid "On-disk location for exported repositories"
|
3258
3354
|
msgstr ""
|
3259
3355
|
|
3356
|
+
msgid "On-disk location for pulp 3 exported repositories"
|
3357
|
+
msgstr ""
|
3358
|
+
|
3260
3359
|
#, fuzzy
|
3261
3360
|
msgid "One of parameters [ %s ] required but not specified."
|
3262
3361
|
msgstr "organization_id আবশ্যক কিন্তু উল্লেখ করা হয়নি।"
|
@@ -3290,6 +3389,9 @@ msgstr ""
|
|
3290
3389
|
msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z)"
|
3291
3390
|
msgstr ""
|
3292
3391
|
|
3392
|
+
msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z). Relevant only for Pulp 2 repositories"
|
3393
|
+
msgstr ""
|
3394
|
+
|
3293
3395
|
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman, author Runa Bhattacharjee
|
3294
3396
|
msgid "Organization"
|
3295
3397
|
msgstr "প্রতিষ্ঠান"
|
@@ -3569,6 +3671,18 @@ msgstr ""
|
|
3569
3671
|
msgid "Perform an Incremental Update on one or more Content View Versions"
|
3570
3672
|
msgstr ""
|
3571
3673
|
|
3674
|
+
msgid "Performs a full-export of a content view version."
|
3675
|
+
msgstr ""
|
3676
|
+
|
3677
|
+
msgid "Performs a full-export of the repositories in library."
|
3678
|
+
msgstr ""
|
3679
|
+
|
3680
|
+
msgid "Performs an incremental-export of a content view version."
|
3681
|
+
msgstr ""
|
3682
|
+
|
3683
|
+
msgid "Performs an incremental-export of the repositories in library."
|
3684
|
+
msgstr ""
|
3685
|
+
|
3572
3686
|
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
3573
3687
|
msgid "Permission Denied. User '%{user}' does not have permissions to access organization '%{org}'."
|
3574
3688
|
msgstr "অনুমতি প্রত্যাখ্যান করা হয়েছে। '%{org}' প্রতিষ্ঠানে প্রবেশ করার অধিকার '%{user}' ব্যবহারকারীর নেই।"
|
@@ -3580,6 +3694,9 @@ msgstr "প্রকৃত"
|
|
3580
3694
|
msgid "Plan numeric identifier"
|
3581
3695
|
msgstr ""
|
3582
3696
|
|
3697
|
+
msgid "Please add some repositories."
|
3698
|
+
msgstr ""
|
3699
|
+
|
3583
3700
|
msgid "Please enter a positive number above zero"
|
3584
3701
|
msgstr ""
|
3585
3702
|
|
@@ -3607,6 +3724,9 @@ msgstr ""
|
|
3607
3724
|
msgid "Please select one from the list below and you will be redirected."
|
3608
3725
|
msgstr ""
|
3609
3726
|
|
3727
|
+
msgid "Prior Content View Version specified in the metadata - '%{name}' does not exist. Please import the metadata for '%{name}' before importing '%{current}' "
|
3728
|
+
msgstr ""
|
3729
|
+
|
3610
3730
|
msgid "Processing metadata"
|
3611
3731
|
msgstr ""
|
3612
3732
|
|
@@ -3714,6 +3834,9 @@ msgstr ""
|
|
3714
3834
|
msgid "Pulp"
|
3715
3835
|
msgstr ""
|
3716
3836
|
|
3837
|
+
msgid "Pulp 3 export destination filepath"
|
3838
|
+
msgstr ""
|
3839
|
+
|
3717
3840
|
msgid "Pulp 3 migration cannot run. Types %s have already been migrated."
|
3718
3841
|
msgstr ""
|
3719
3842
|
|
@@ -3768,6 +3891,12 @@ msgstr ""
|
|
3768
3891
|
msgid "Pulp task error"
|
3769
3892
|
msgstr ""
|
3770
3893
|
|
3894
|
+
msgid "Pulp user or group unable to read '%s'."
|
3895
|
+
msgstr ""
|
3896
|
+
|
3897
|
+
msgid "Pulp user or group unable to read content in '%s'."
|
3898
|
+
msgstr ""
|
3899
|
+
|
3771
3900
|
msgid "Pulpcore"
|
3772
3901
|
msgstr ""
|
3773
3902
|
|
@@ -3844,6 +3973,9 @@ msgstr ""
|
|
3844
3973
|
msgid "Recommended Repositories"
|
3845
3974
|
msgstr ""
|
3846
3975
|
|
3976
|
+
msgid "Red Hat"
|
3977
|
+
msgstr ""
|
3978
|
+
|
3847
3979
|
#, fuzzy
|
3848
3980
|
msgid "Red Hat CDN URL"
|
3849
3981
|
msgstr "উৎপাদন"
|
@@ -4079,6 +4211,9 @@ msgstr ""
|
|
4079
4211
|
msgid "Resolve Traces"
|
4080
4212
|
msgstr ""
|
4081
4213
|
|
4214
|
+
msgid "Resolve traces for one or more hosts"
|
4215
|
+
msgstr ""
|
4216
|
+
|
4082
4217
|
msgid "Resource"
|
4083
4218
|
msgstr ""
|
4084
4219
|
|
@@ -4158,6 +4293,9 @@ msgstr ""
|
|
4158
4293
|
msgid "Role"
|
4159
4294
|
msgstr ""
|
4160
4295
|
|
4296
|
+
msgid "Role of host"
|
4297
|
+
msgstr ""
|
4298
|
+
|
4161
4299
|
msgid "Run Sync Plan:"
|
4162
4300
|
msgstr ""
|
4163
4301
|
|
@@ -4262,6 +4400,9 @@ msgstr "পরিসেবার স্তর %s"
|
|
4262
4400
|
msgid "Service Level (SLA)"
|
4263
4401
|
msgstr ""
|
4264
4402
|
|
4403
|
+
msgid "Service level of host"
|
4404
|
+
msgstr ""
|
4405
|
+
|
4265
4406
|
msgid "Service level to be used for autoheal"
|
4266
4407
|
msgstr ""
|
4267
4408
|
|
@@ -4365,6 +4506,15 @@ msgstr ""
|
|
4365
4506
|
msgid "Simple Content Access"
|
4366
4507
|
msgstr ""
|
4367
4508
|
|
4509
|
+
msgid "Simple Content Access has been disabled by the upstream organization administrator."
|
4510
|
+
msgstr ""
|
4511
|
+
|
4512
|
+
msgid "Simple Content Access has been disabled for '%{subject}'."
|
4513
|
+
msgstr ""
|
4514
|
+
|
4515
|
+
msgid "Simple Content Access has been enabled for '%{subject}'."
|
4516
|
+
msgstr ""
|
4517
|
+
|
4368
4518
|
msgid "Size of file to upload"
|
4369
4519
|
msgstr ""
|
4370
4520
|
|
@@ -4399,6 +4549,9 @@ msgstr ""
|
|
4399
4549
|
msgid "Specify the list of units in each repo"
|
4400
4550
|
msgstr ""
|
4401
4551
|
|
4552
|
+
msgid "Split the exported content into archives no greater than the specified size in megabytes."
|
4553
|
+
msgstr ""
|
4554
|
+
|
4402
4555
|
msgid "Stacking ID"
|
4403
4556
|
msgstr ""
|
4404
4557
|
|
@@ -4615,6 +4768,9 @@ msgstr ""
|
|
4615
4768
|
msgid "Sync plan identifier to attach"
|
4616
4769
|
msgstr ""
|
4617
4770
|
|
4771
|
+
msgid "Sync state"
|
4772
|
+
msgstr ""
|
4773
|
+
|
4618
4774
|
msgid "Synced Content"
|
4619
4775
|
msgstr ""
|
4620
4776
|
|
@@ -4680,6 +4836,9 @@ msgstr "'%s' পরিবেশের মধ্যে changeset উপস্থ
|
|
4680
4836
|
msgid "The Subscription Allocation providing the imported manifest has been removed. Please create a new Subscription Allocation and import the new manifest."
|
4681
4837
|
msgstr ""
|
4682
4838
|
|
4839
|
+
msgid "The TOC file specified in the metadata does not exist. %s "
|
4840
|
+
msgstr ""
|
4841
|
+
|
4683
4842
|
msgid "The action requested on this composite view cannot be performed until all of the component content view versions have been promoted to the target environment: %{env}. This restriction is optional and can be modified in the Administrator -> Settings -> Content page using the restrict_composite_view flag."
|
4684
4843
|
msgstr ""
|
4685
4844
|
|
@@ -4721,15 +4880,26 @@ msgstr ""
|
|
4721
4880
|
msgid "The erratum type must be an array. Invalid value provided"
|
4722
4881
|
msgstr ""
|
4723
4882
|
|
4883
|
+
msgid "The exported Content View Version '%{content_view} %{current}' cannot be incrementally updated from version '%{from}'. Please do a full export."
|
4884
|
+
msgstr ""
|
4885
|
+
|
4724
4886
|
msgid "The field to sort the data by. Defaults to the created date."
|
4725
4887
|
msgstr ""
|
4726
4888
|
|
4727
4889
|
msgid "The following hosts have errata that apply to them: "
|
4728
4890
|
msgstr ""
|
4729
4891
|
|
4892
|
+
msgid ""
|
4893
|
+
"The following repositories provided in the import metadata are either not available in the Library or are of incorrect Respository Type. Please add or enable the repositories before importing\n"
|
4894
|
+
" %{repos}"
|
4895
|
+
msgstr ""
|
4896
|
+
|
4730
4897
|
msgid "The id of the host to alter"
|
4731
4898
|
msgstr ""
|
4732
4899
|
|
4900
|
+
msgid "The import path must be in a subdirectory under '%s'."
|
4901
|
+
msgstr ""
|
4902
|
+
|
4733
4903
|
msgid "The list of environments to promote the specified Content View Version to (replacing the older version)"
|
4734
4904
|
msgstr ""
|
4735
4905
|
|
@@ -4779,6 +4949,9 @@ msgstr ""
|
|
4779
4949
|
msgid "The requested resource does not belong to the specified organization"
|
4780
4950
|
msgstr ""
|
4781
4951
|
|
4952
|
+
msgid "The requested traces were not found for this host"
|
4953
|
+
msgstr ""
|
4954
|
+
|
4782
4955
|
msgid "The selected content source and lifecycle environment do not match"
|
4783
4956
|
msgstr ""
|
4784
4957
|
|
@@ -4842,6 +5015,9 @@ msgstr ""
|
|
4842
5015
|
msgid "There's no running synchronization for this smart proxy."
|
4843
5016
|
msgstr ""
|
4844
5017
|
|
5018
|
+
msgid "This Content View must be set to Import-only before performing an import"
|
5019
|
+
msgstr ""
|
5020
|
+
|
4845
5021
|
msgid "This Host is not currently registered with subscription-manager."
|
4846
5022
|
msgstr ""
|
4847
5023
|
|
@@ -4851,6 +5027,9 @@ msgstr ""
|
|
4851
5027
|
msgid "This action doesn't support package groups"
|
4852
5028
|
msgstr ""
|
4853
5029
|
|
5030
|
+
msgid "This action will become available after the Pulp 3 content migration"
|
5031
|
+
msgstr ""
|
5032
|
+
|
4854
5033
|
msgid "This certificate allows a user to view the repositories in any environment from a browser."
|
4855
5034
|
msgstr ""
|
4856
5035
|
|
@@ -4981,10 +5160,16 @@ msgstr ""
|
|
4981
5160
|
msgid "Unable to detect puppet path"
|
4982
5161
|
msgstr ""
|
4983
5162
|
|
4984
|
-
msgid "Unable to export, 'pulp_export_destination' setting is not a
|
5163
|
+
msgid "Unable to export, 'pulp_export_destination' setting is not set to a valid directory."
|
4985
5164
|
msgstr ""
|
4986
5165
|
|
4987
|
-
msgid "Unable to export
|
5166
|
+
msgid "Unable to export. 'pulp_export_destination' setting is not a writable directory."
|
5167
|
+
msgstr ""
|
5168
|
+
|
5169
|
+
msgid "Unable to export. 'pulpcore_export_destination' setting is not set to a valid directory."
|
5170
|
+
msgstr ""
|
5171
|
+
|
5172
|
+
msgid "Unable to incrementally export. Do a Full Export the library content before updating from the latest increment."
|
4988
5173
|
msgstr ""
|
4989
5174
|
|
4990
5175
|
msgid "Unable to reassign activation_keys. Please check activation_key_content_view_id and activation_key_environment_id."
|
@@ -5201,6 +5386,12 @@ msgstr ""
|
|
5201
5386
|
msgid "Updating Package..."
|
5202
5387
|
msgstr "প্যাকেজ আপডেট করা হচ্ছে..."
|
5203
5388
|
|
5389
|
+
msgid "Updating System Purpose for host"
|
5390
|
+
msgstr ""
|
5391
|
+
|
5392
|
+
msgid "Updating System Purpose for host %s"
|
5393
|
+
msgstr ""
|
5394
|
+
|
5204
5395
|
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author bnin
|
5205
5396
|
msgid "Updating package group..."
|
5206
5397
|
msgstr "প্যাকেজ গ্রুপ আপডেট করা হচ্ছে..."
|
@@ -5258,9 +5449,15 @@ msgstr ""
|
|
5258
5449
|
msgid "Usage Type"
|
5259
5450
|
msgstr ""
|
5260
5451
|
|
5452
|
+
msgid "Usage of host"
|
5453
|
+
msgstr ""
|
5454
|
+
|
5261
5455
|
msgid "Use remote execution by default"
|
5262
5456
|
msgstr ""
|
5263
5457
|
|
5458
|
+
msgid "Used to determine download concurrency of the repository in pulp3. Use value less than 20. Defaults to 10"
|
5459
|
+
msgstr ""
|
5460
|
+
|
5264
5461
|
msgid "User '%s' did not specify an organization ID and does not have a default organization."
|
5265
5462
|
msgstr ""
|
5266
5463
|
|
@@ -5285,6 +5482,15 @@ msgstr ""
|
|
5285
5482
|
msgid "Value must either be a boolean or 'default' for 'enabled'"
|
5286
5483
|
msgstr ""
|
5287
5484
|
|
5485
|
+
msgid "Verify checksum"
|
5486
|
+
msgstr ""
|
5487
|
+
|
5488
|
+
msgid "Verify checksum for one or more products"
|
5489
|
+
msgstr ""
|
5490
|
+
|
5491
|
+
msgid "Verify checksum of repository contents"
|
5492
|
+
msgstr ""
|
5493
|
+
|
5288
5494
|
msgid "Version"
|
5289
5495
|
msgstr ""
|
5290
5496
|
|
@@ -5302,7 +5508,7 @@ msgstr ""
|
|
5302
5508
|
msgid "Virtual"
|
5303
5509
|
msgstr "ভার্চুয়াল"
|
5304
5510
|
|
5305
|
-
msgid "When Simple Content Access is enabled, hosts
|
5511
|
+
msgid "When Simple Content Access is enabled, hosts are not required to have subscriptions attached to access repositories."
|
5306
5512
|
msgstr ""
|
5307
5513
|
|
5308
5514
|
msgid "When registering a host via subscription-manager, force use the specified fact (in the form of 'fact.fact')"
|
@@ -5373,6 +5579,9 @@ msgstr "%s ব্যবহারকারীর জন্য ডিফল্ট
|
|
5373
5579
|
msgid "You currently don't have any Content Views."
|
5374
5580
|
msgstr ""
|
5375
5581
|
|
5582
|
+
msgid "You currently don't have any repositories to add to this content view."
|
5583
|
+
msgstr ""
|
5584
|
+
|
5376
5585
|
msgid "You do not have permissions to delete %s"
|
5377
5586
|
msgstr ""
|
5378
5587
|
|
@@ -5489,6 +5698,9 @@ msgstr "প্রতিষ্ঠান"
|
|
5489
5698
|
msgid "an ostree branch"
|
5490
5699
|
msgstr ""
|
5491
5700
|
|
5701
|
+
msgid "are only allowed for Yum repositories."
|
5702
|
+
msgstr ""
|
5703
|
+
|
5492
5704
|
msgid "attempted to sync without a feed URL"
|
5493
5705
|
msgstr ""
|
5494
5706
|
|
@@ -5508,6 +5720,9 @@ msgstr ""
|
|
5508
5720
|
msgid "can't be blank"
|
5509
5721
|
msgstr "ফাঁকা রাখা চলবে না"
|
5510
5722
|
|
5723
|
+
msgid "cannot add filter to import-only view"
|
5724
|
+
msgstr ""
|
5725
|
+
|
5511
5726
|
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
5512
5727
|
msgid "cannot be a binary file."
|
5513
5728
|
msgstr "বাইনারি ফাইল হওয়া চলবে না"
|
@@ -5572,13 +5787,13 @@ msgstr ""
|
|
5572
5787
|
msgid "checking Pulp task status"
|
5573
5788
|
msgstr ""
|
5574
5789
|
|
5575
|
-
msgid "comma
|
5790
|
+
msgid "comma-separated list of architectures to be synced from deb-archive"
|
5576
5791
|
msgstr ""
|
5577
5792
|
|
5578
|
-
msgid "comma
|
5793
|
+
msgid "comma-separated list of releases to be synced from deb-archive"
|
5579
5794
|
msgstr ""
|
5580
5795
|
|
5581
|
-
msgid "comma
|
5796
|
+
msgid "comma-separated list of repo components to be synced from deb-archive"
|
5582
5797
|
msgstr ""
|
5583
5798
|
|
5584
5799
|
msgid "composite content view identifier"
|
@@ -5810,9 +6025,6 @@ msgstr ""
|
|
5810
6025
|
msgid "if true, Katello will verify the upstream url's SSL certifcates are signed by a trusted CA"
|
5811
6026
|
msgstr ""
|
5812
6027
|
|
5813
|
-
msgid "if true, the repositories will be automatically enabled on a registered host subscribed to this product. Default: true"
|
5814
|
-
msgstr ""
|
5815
|
-
|
5816
6028
|
msgid "if true, will ignore the globally configured proxy when syncing"
|
5817
6029
|
msgstr ""
|
5818
6030
|
|
@@ -5852,6 +6064,9 @@ msgstr ""
|
|
5852
6064
|
msgid "invalid container image name"
|
5853
6065
|
msgstr ""
|
5854
6066
|
|
6067
|
+
msgid "invalid: Repositories can only require one OS version."
|
6068
|
+
msgstr ""
|
6069
|
+
|
5855
6070
|
msgid "is already attached to the capsule"
|
5856
6071
|
msgstr ""
|
5857
6072
|
|
@@ -5892,6 +6107,9 @@ msgstr ""
|
|
5892
6107
|
msgid "maximum size of each ISO in MB"
|
5893
6108
|
msgstr ""
|
5894
6109
|
|
6110
|
+
msgid "maximum size of each ISO in MB. Relevant only for Pulp 2 repositories"
|
6111
|
+
msgstr ""
|
6112
|
+
|
5895
6113
|
msgid "may not be less than the number of hosts associated with the host collection."
|
5896
6114
|
msgstr ""
|
5897
6115
|
|
@@ -5914,6 +6132,9 @@ msgstr "শূণ্য থেকে অধিক পূর্ণসংখ্য
|
|
5914
6132
|
msgid "must be one of the following: %s"
|
5915
6133
|
msgstr ""
|
5916
6134
|
|
6135
|
+
msgid "must be one of: %s"
|
6136
|
+
msgstr ""
|
6137
|
+
|
5917
6138
|
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
5918
6139
|
msgid "must be unique within one organization"
|
5919
6140
|
msgstr "একটি প্রতিষ্ঠানের মধ্যে স্বতন্ত্র মান হওয়া আবশ্যক"
|
@@ -6178,6 +6399,9 @@ msgstr ""
|
|
6178
6399
|
msgid "the uuid of the puppet module to associate"
|
6179
6400
|
msgstr ""
|
6180
6401
|
|
6402
|
+
msgid "true if the export api is pulp3 ready and usable. This API is intended for use by hammer-cli only."
|
6403
|
+
msgstr ""
|
6404
|
+
|
6181
6405
|
msgid "true if the latest version of the component's content view is desired"
|
6182
6406
|
msgstr ""
|
6183
6407
|
|