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.

Files changed (193) hide show
  1. checksums.yaml +4 -4
  2. data/app/controllers/katello/api/registry/registry_proxies_controller.rb +38 -21
  3. data/app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb +3 -1
  4. data/app/controllers/katello/api/v2/activation_keys_controller.rb +10 -15
  5. data/app/controllers/katello/api/v2/api_controller.rb +2 -1
  6. data/app/controllers/katello/api/v2/content_credentials_controller.rb +1 -8
  7. data/app/controllers/katello/api/v2/content_view_components_controller.rb +31 -14
  8. data/app/controllers/katello/api/v2/content_view_repositories_controller.rb +1 -0
  9. data/app/controllers/katello/api/v2/content_view_versions_controller.rb +65 -36
  10. data/app/controllers/katello/api/v2/content_views_controller.rb +27 -25
  11. data/app/controllers/katello/api/v2/environments_controller.rb +8 -8
  12. data/app/controllers/katello/api/v2/gpg_keys_controller.rb +5 -5
  13. data/app/controllers/katello/api/v2/host_collections_controller.rb +19 -16
  14. data/app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb +17 -0
  15. data/app/controllers/katello/api/v2/repositories_bulk_actions_controller.rb +1 -1
  16. data/app/controllers/katello/api/v2/repositories_controller.rb +8 -5
  17. data/app/controllers/katello/api/v2/subscriptions_controller.rb +1 -1
  18. data/app/controllers/katello/api/v2/sync_plans_controller.rb +8 -9
  19. data/app/controllers/katello/api/v2/upstream_subscriptions_controller.rb +9 -2
  20. data/app/controllers/katello/concerns/api/v2/authorization.rb +9 -5
  21. data/app/controllers/katello/concerns/api/v2/registration_controller_extensions.rb +21 -0
  22. data/app/controllers/katello/concerns/api/v2/repository_content_controller.rb +1 -1
  23. data/app/controllers/katello/concerns/organizations_controller_extensions.rb +2 -1
  24. data/app/helpers/katello/katello_urls_helper.rb +5 -2
  25. data/app/lib/actions/candlepin/product/content_create.rb +2 -0
  26. data/app/lib/actions/candlepin/product/content_update.rb +2 -0
  27. data/app/lib/actions/katello/applicability/hosts/bulk_generate.rb +2 -6
  28. data/app/lib/actions/katello/capsule_content/sync_capsule.rb +2 -6
  29. data/app/lib/actions/katello/content_view/publish.rb +3 -4
  30. data/app/lib/actions/katello/content_view_version/import.rb +4 -3
  31. data/app/lib/actions/katello/content_view_version/incremental_update.rb +18 -3
  32. data/app/lib/actions/katello/host/update_system_purpose.rb +31 -0
  33. data/app/lib/actions/katello/organization/manifest_delete.rb +0 -1
  34. data/app/lib/actions/katello/organization/manifest_import.rb +0 -1
  35. data/app/lib/actions/katello/organization/manifest_refresh.rb +0 -1
  36. data/app/lib/actions/katello/product/content_create.rb +7 -6
  37. data/app/lib/actions/katello/repository/filtered_index_content.rb +10 -1
  38. data/app/lib/actions/katello/repository/import_upload.rb +2 -1
  39. data/app/lib/actions/katello/repository/update.rb +4 -1
  40. data/app/lib/actions/pulp3/abstract_async_task.rb +0 -1
  41. data/app/lib/actions/pulp3/content_view/delete_repository_references.rb +1 -1
  42. data/app/lib/actions/pulp3/content_view_version/create_importer.rb +7 -3
  43. data/app/lib/actions/pulp3/content_view_version/export.rb +2 -1
  44. data/app/lib/actions/pulp3/content_view_version/import.rb +7 -3
  45. data/app/lib/actions/pulp3/orchestration/content_view_version/export.rb +15 -10
  46. data/app/lib/actions/pulp3/orchestration/content_view_version/import.rb +16 -10
  47. data/app/lib/actions/pulp3/repository/commit_upload.rb +2 -1
  48. data/app/lib/actions/pulp3/repository/delete.rb +1 -1
  49. data/app/lib/actions/pulp3/repository/save_artifact.rb +1 -1
  50. data/app/lib/katello/resources/candlepin/consumer.rb +2 -2
  51. data/app/lib/katello/resources/candlepin/owner.rb +5 -0
  52. data/app/lib/katello/resources/candlepin/upstream_consumer.rb +6 -0
  53. data/app/lib/katello/resources/registry.rb +3 -3
  54. data/app/models/katello/authorization/activation_key.rb +4 -0
  55. data/app/models/katello/authorization/content_view.rb +13 -0
  56. data/app/models/katello/authorization/content_view_component.rb +15 -0
  57. data/app/models/katello/authorization/gpg_key.rb +12 -4
  58. data/app/models/katello/authorization/lifecycle_environment.rb +8 -0
  59. data/app/models/katello/authorization/sync_plan.rb +16 -0
  60. data/app/models/katello/concerns/organization_extensions.rb +4 -5
  61. data/app/models/katello/concerns/redhat_extensions.rb +2 -2
  62. data/app/models/katello/concerns/smart_proxy_extensions.rb +1 -3
  63. data/app/models/katello/content_view_component.rb +2 -0
  64. data/app/models/katello/content_view_version_export_history.rb +2 -0
  65. data/app/models/katello/glue/candlepin/pool.rb +9 -14
  66. data/app/models/katello/glue/pulp/repo.rb +8 -0
  67. data/app/models/katello/gpg_key.rb +1 -1
  68. data/app/models/katello/root_repository.rb +26 -1
  69. data/app/services/katello/applicability/applicable_content_helper.rb +1 -12
  70. data/app/services/katello/candlepin/event_handler.rb +2 -0
  71. data/app/services/katello/candlepin/message_handler.rb +34 -0
  72. data/app/services/katello/candlepin/upstream_consumer.rb +28 -0
  73. data/app/services/katello/host_status_manager.rb +9 -0
  74. data/app/services/katello/pulp3/api/apt.rb +57 -0
  75. data/app/services/katello/pulp3/api/core.rb +8 -0
  76. data/app/services/katello/pulp3/content_view_version/export.rb +4 -3
  77. data/app/services/katello/pulp3/content_view_version/import.rb +5 -15
  78. data/app/services/katello/pulp3/deb.rb +38 -0
  79. data/app/services/katello/pulp3/erratum.rb +1 -2
  80. data/app/services/katello/pulp3/pulp_content_unit.rb +5 -0
  81. data/app/services/katello/pulp3/repository/ansible_collection.rb +9 -0
  82. data/app/services/katello/pulp3/repository/apt.rb +63 -0
  83. data/app/services/katello/pulp3/repository/docker.rb +4 -0
  84. data/app/services/katello/pulp3/repository/yum.rb +2 -1
  85. data/app/services/katello/pulp3/repository.rb +11 -9
  86. data/app/services/katello/pulp3/repository_mirror.rb +9 -4
  87. data/app/services/katello/pulp3/task.rb +3 -3
  88. data/app/services/katello/pulp3/task_group.rb +0 -6
  89. data/app/views/dashboard/_subscription_widget.html.erb +0 -5
  90. data/app/views/katello/api/v2/content_view_version_export_histories/show.json.rabl +1 -1
  91. data/app/views/katello/api/v2/repositories/base.json.rabl +1 -1
  92. data/app/views/overrides/organizations/_index_row_override.html.erb +1 -1
  93. data/config/routes/api/v2.rb +2 -0
  94. data/config/routes/overrides.rb +1 -0
  95. data/db/migrate/20150930183738_migrate_content_hosts.rb +1 -1
  96. data/db/migrate/20200514092553_move_katello_fields_from_hostgroups.katello.rb +2 -5
  97. data/db/migrate/20201008204114_add_os_versions_to_katello_root_repositories.rb +5 -0
  98. data/db/migrate/20201012172713_remove_gpg_key_perms.rb +23 -0
  99. data/db/migrate/20201012192035_add_metadata_to_katello_content_view_version_export_history.rb +5 -0
  100. data/db/seeds.d/111-upgrade_tasks.rb +2 -1
  101. data/engines/bastion/app/assets/javascripts/bastion/components/notification.service.js +1 -1
  102. data/engines/bastion/app/assets/javascripts/bastion/components/nutupane.factory.js +8 -13
  103. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/common/views/katello-agent-notice.html +1 -1
  104. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-system-purpose-modal.controller.js +112 -0
  105. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-system-purpose-modal.html +78 -0
  106. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-debs-installed.controller.js +2 -42
  107. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-host-modal-helper.service.js +11 -0
  108. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-hosts.controller.js +5 -0
  109. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/content-hosts.html +4 -0
  110. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/register-client.html +1 -1
  111. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/host-collection-details.controller.js +4 -0
  112. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/views/host-collection-info.html +6 -0
  113. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/hosts/host-bulk-action.factory.js +2 -1
  114. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/bastion_katello.pot +16 -14
  115. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/bulk/products-bulk-advanced-sync-modal.controller.js +6 -7
  116. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details-info.controller.js +168 -155
  117. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html +17 -2
  118. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/new-repository.controller.js +125 -113
  119. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html +15 -3
  120. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/os-versions.service.js +46 -0
  121. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/views/content-access-mode-banner.html +1 -1
  122. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/sync-plans/details/views/sync-plan-details.html +1 -1
  123. data/lib/katello/engine.rb +1 -0
  124. data/lib/katello/permission_creator.rb +68 -59
  125. data/lib/katello/permissions/host_permissions.rb +1 -0
  126. data/lib/katello/plugin.rb +4 -1
  127. data/lib/katello/repository_types/deb.rb +9 -1
  128. data/lib/katello/tasks/pulp3_content_switchover.rake +1 -3
  129. data/lib/katello/tasks/pulp3_migration_stats.rake +21 -0
  130. data/lib/katello/tasks/reports.rake +1 -4
  131. data/lib/katello/tasks/reset.rake +2 -1
  132. data/lib/katello/tasks/upgrades/3.18/add_cvv_export_history_metadata.rb +18 -0
  133. data/lib/katello/version.rb +1 -1
  134. data/locale/action_names.rb +54 -47
  135. data/locale/bn/katello.po +165 -26
  136. data/locale/cs/katello.po +164 -24
  137. data/locale/de/katello.po +165 -26
  138. data/locale/en/katello.po +164 -23
  139. data/locale/es/katello.po +165 -25
  140. data/locale/fr/katello.po +165 -25
  141. data/locale/gu/katello.po +165 -26
  142. data/locale/hi/katello.po +165 -26
  143. data/locale/it/katello.po +165 -25
  144. data/locale/ja/katello.po +165 -26
  145. data/locale/katello.pot +1036 -802
  146. data/locale/kn/katello.po +165 -26
  147. data/locale/ko/katello.po +165 -25
  148. data/locale/mr/katello.po +165 -26
  149. data/locale/or/katello.po +165 -26
  150. data/locale/pa/katello.po +165 -26
  151. data/locale/pt/katello.po +164 -23
  152. data/locale/pt_BR/katello.po +165 -25
  153. data/locale/ru/katello.po +165 -25
  154. data/locale/ta/katello.po +165 -26
  155. data/locale/te/katello.po +165 -26
  156. data/locale/zh_CN/katello.po +165 -25
  157. data/locale/zh_TW/katello.po +165 -26
  158. data/webpack/components/ActionableDetail.js +2 -1
  159. data/webpack/components/Search/Search.js +1 -1
  160. data/webpack/components/Table/MainTable.js +6 -2
  161. data/webpack/components/Table/TableWrapper.js +46 -9
  162. data/webpack/scenes/ContentViews/ContentViewSelectors.js +7 -3
  163. data/webpack/scenes/ContentViews/ContentViewsConstants.js +8 -0
  164. data/webpack/scenes/ContentViews/ContentViewsPage.js +2 -9
  165. data/webpack/scenes/ContentViews/Details/ContentViewDetailActions.js +25 -3
  166. data/webpack/scenes/ContentViews/Details/ContentViewDetailSelectors.js +14 -4
  167. data/webpack/scenes/ContentViews/Details/ContentViewDetails.js +2 -1
  168. data/webpack/scenes/ContentViews/Details/Repositories/ContentCounts.js +56 -0
  169. data/webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js +169 -0
  170. data/webpack/scenes/ContentViews/Details/Repositories/LastSync.js +47 -0
  171. data/webpack/scenes/ContentViews/Details/Repositories/RepoAddedStatus.js +17 -0
  172. data/webpack/scenes/ContentViews/Details/Repositories/RepoIcon.js +23 -0
  173. data/webpack/scenes/ContentViews/Details/Repositories/SelectableDropdown.js +49 -0
  174. data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewDetailRepos.fixtures.json +154 -0
  175. data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewDetailRepos.test.js +131 -0
  176. data/webpack/scenes/ContentViews/Details/__tests__/contentViewDetail.test.js +3 -0
  177. data/webpack/scenes/ContentViews/Table/ContentViewsTable.js +4 -1
  178. data/webpack/scenes/ContentViews/__tests__/contentViewPage.test.js +2 -2
  179. data/webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js +16 -8
  180. data/webpack/scenes/Subscriptions/Manifest/ManifestActions.js +17 -0
  181. data/webpack/scenes/Subscriptions/Manifest/ManifestConstants.js +4 -0
  182. data/webpack/scenes/Subscriptions/Manifest/SimpleContentAccess.js +19 -2
  183. data/webpack/scenes/Subscriptions/Manifest/__tests__/SimpleContentAccess.test.js +9 -1
  184. data/webpack/scenes/Subscriptions/Manifest/index.js +2 -1
  185. data/webpack/scenes/Subscriptions/SubscriptionConstants.js +1 -1
  186. data/webpack/scenes/Subscriptions/SubscriptionReducer.js +3 -0
  187. data/webpack/scenes/Subscriptions/SubscriptionsPage.js +8 -2
  188. data/webpack/scenes/Subscriptions/SubscriptionsSelectors.js +3 -0
  189. data/webpack/scenes/Subscriptions/__tests__/SubscriptionsPage.test.js +3 -0
  190. data/webpack/scenes/Subscriptions/__tests__/SubscriptionsSelectors.test.js +6 -0
  191. data/webpack/scenes/Subscriptions/__tests__/__snapshots__/SubscriptionsSelectors.test.js.snap +6 -0
  192. data/webpack/scenes/Subscriptions/components/SubscriptionsToolbar/SubscriptionsToolbar.js +1 -13
  193. metadata +69 -26
@@ -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',
@@ -280,6 +280,9 @@ 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
+
283
286
  extend_page "smart_proxies/show" do |cx|
284
287
  cx.add_pagelet :details_content,
285
288
  :name => _('Storage'),
@@ -355,7 +358,7 @@ Foreman::Plugin.register :katello do
355
358
  role 'Register hosts', [
356
359
  :view_hostgroups, :view_activation_keys, :view_hosts,
357
360
  :create_hosts, :edit_hosts, :destroy_hosts,
358
- :view_content_views, :view_gpg_keys, :view_subscriptions,
361
+ :view_content_views, :view_content_credentials, :view_subscriptions,
359
362
  :attach_subscriptions, :view_host_collections,
360
363
  :view_organizations, :view_lifecycle_environments, :view_products,
361
364
  :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, :pulp2_service_class => ::Katello::Pulp::Deb, :removable => true, :uploadable => true
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
@@ -1,11 +1,9 @@
1
- load "#{Katello::Engine.root}/lib/katello/tasks/common.rake"
2
-
3
1
  require File.expand_path("../engine", File.dirname(__FILE__))
4
2
  require "#{Katello::Engine.root}/app/services/katello/pulp3/migration_switchover"
5
3
 
6
4
  namespace :katello do
7
5
  desc "Runs a Pulp 3 migration of pulp3 hrefs to pulp ids for supported content types."
8
- task :pulp3_content_switchover => [:environment, :disable_dynflow] do
6
+ task :pulp3_content_switchover => :environment do
9
7
  begin
10
8
  User.current = User.anonymous_admin
11
9
 
@@ -0,0 +1,21 @@
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_rpms = ::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_errata = ::Katello::RepositoryErratum.where.not(erratum_pulp3_href: nil).count
9
+ migrated_repos = ::Katello::Repository.where.not(version_href: nil).count
10
+ migratable_repos = ::Katello::Repository.count - ::Katello::Repository.puppet_type.count -
11
+ ::Katello::Repository.ostree_type.count - ::Katello::Repository.deb_type.count
12
+
13
+ puts
14
+ puts "Migrated/Total RPMs: #{migrated_rpms}/#{::Katello::Rpm.count}"
15
+ puts "Migrated/Total errata: #{migrated_errata}/#{::Katello::RepositoryErratum.count}"
16
+ puts "Migrated/Total repositories: #{migrated_repos}/#{migratable_repos}"
17
+ puts
18
+ 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."
19
+ puts "Check the size of /var/lib/pulp/published with 'du -sh /var/lib/pulp/published/'"
20
+ end
21
+ end
@@ -1,7 +1,4 @@
1
1
  load "#{Rails.root}/lib/tasks/reports.rake"
2
2
 
3
3
  #Katello reports can generate a foreman task, so mark the task as a dynflow client
4
- ["reports:daily", "reports:weekly", "reports:monthly"].each do |task|
5
- Rake::Task[task].clear
6
- Rake::Task[task].enhance ["dynflow:client"]
7
- end
4
+ ["reports:daily", "reports:weekly", "reports:monthly"].each { |task| Rake::Task[task].enhance ["dynflow:client"] }
@@ -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
- Dir.chdir('/usr/lib/python3.6/site-packages/pulpcore') do
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
@@ -1,3 +1,3 @@
1
1
  module Katello
2
- VERSION = "3.17.3".freeze
2
+ VERSION = "3.18.0.rc1".freeze
3
3
  end
@@ -1,70 +1,77 @@
1
1
  # Autogenerated!
2
- _("Index module streams")
3
- _("Index package groups")
2
+ _("Import")
3
+ _("Export")
4
+ _("Update")
5
+ _("Enable")
6
+ _("Verify checksum")
4
7
  _("Upload into")
5
- _("Index content")
6
- _("Fetch pxe files")
8
+ _("Upload errata into")
9
+ _("Update redhat repository")
10
+ _("Update content urls")
11
+ _("Update http proxy details")
12
+ _("Index package groups")
13
+ _("Instance update")
14
+ _("Index errata")
15
+ _("Filtered index content")
7
16
  _("Discover")
8
17
  _("Errata mail")
9
- _("Delete")
10
18
  _("Delete Package Group")
11
19
  _("Create")
12
- _("Delete Product")
20
+ _("Delete")
13
21
  _("Reindex subscriptions")
14
- _("Product Create")
22
+ _("Delete Product")
15
23
  _("Destroy")
16
- _("Combined Profile Update")
24
+ _("Updating System Purpose for host")
25
+ _("Update for host")
17
26
  _("Update release version for host")
18
27
  _("Remove subscriptions")
19
- _("Update Content Overrides")
20
- _("Install package")
28
+ _("Remove package group")
21
29
  _("Update package")
22
- _("Install package group")
23
- _("Install Applicable Errata")
24
- _("Attach subscriptions")
25
- _("Update")
26
- _("Auto attach subscriptions")
27
- _("Destroy Content Host")
28
- _("Install erratum")
30
+ _("Install package")
29
31
  _("Hypervisors")
30
- _("Hypervisors update")
31
- _("Remove package")
32
- _("Remove package group")
33
- _("Update for host")
34
- _("Package Profile Update")
35
- _("Abstract async task")
36
- _("Update http proxy")
37
- _("Export")
38
- _("Filtered index content")
39
- _("Index errata")
40
- _("Instance update")
41
- _("Import facts")
42
- _("Import Puppet classes")
43
- _("Action with sub plans")
44
- _("Remove Content")
45
- _("Synchronize")
46
- _("Update content urls")
47
- _("Update http proxy details")
48
- _("Update redhat repository")
49
- _("Upload errata into")
50
- _("Create Package Group")
51
- _("Disable")
52
- _("Enable")
53
- _("Run Sync Plan:")
32
+ _("Install erratum")
33
+ _("Destroy Content Host")
34
+ _("Attach subscriptions")
35
+ _("Incremental Update")
54
36
  _("Publish Lifecycle Environment Repositories")
55
37
  _("Delete Lifecycle Environment")
56
- _("Incremental Update")
57
- _("Republish Version Repositories")
58
- _("Remove Version")
38
+ _("Import Content View Version")
59
39
  _("Remove from Environment")
60
- _("Remove Versions and Associations")
61
- _("Promotion to Environment")
62
40
  _("Publish")
41
+ _("Promotion to Environment")
63
42
  _("Promote")
64
43
  _("Incremental Update of Content View Version(s) ")
65
44
  _("Sync capsule")
66
45
  _("Synchronize smart proxy")
67
- _("Generate repository applicability")
68
46
  _("Bulk generate applicability for hosts")
69
47
  _("Generate host applicability")
70
48
  _("Delete Activation Key")
49
+ _("Import facts")
50
+ _("Action with sub plans")
51
+ _("Import Puppet classes")
52
+ _("Abstract async task")
53
+ _("Generate repository applicability")
54
+ _("Remove Versions and Associations")
55
+ _("Remove Version")
56
+ _("Republish Version Repositories")
57
+ _("Auto attach subscriptions")
58
+ _("Install Applicable Errata")
59
+ _("Hypervisors update")
60
+ _("Remove package")
61
+ _("Install package group")
62
+ _("Update Content Overrides")
63
+ _("Package Profile Update")
64
+ _("Combined Profile Update")
65
+ _("Product Create")
66
+ _("Update http proxy")
67
+ _("Fetch pxe files")
68
+ _("Index content")
69
+ _("Index module streams")
70
+ _("Remove Content")
71
+ _("Synchronize")
72
+ _("Create Package Group")
73
+ _("Disable")
74
+ _("Run Sync Plan:")
75
+ _("Copy version units to library")
76
+ _("Remote action:")
77
+ _("Report")