katello 4.8.0 → 4.8.1

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of katello might be problematic. Click here for more details.

Files changed (37) hide show
  1. checksums.yaml +4 -4
  2. data/app/controllers/katello/api/v2/simple_content_access_controller.rb +3 -1
  3. data/app/lib/actions/katello/content_view/publish.rb +2 -9
  4. data/app/lib/actions/katello/organization/simple_content_access/enable.rb +10 -0
  5. data/app/lib/actions/katello/organization/simple_content_access/prepare_content_overrides.rb +36 -0
  6. data/app/lib/actions/katello/organization/simple_content_access/toggle.rb +12 -2
  7. data/app/lib/katello/util/content_overrides_migrator.rb +98 -0
  8. data/app/models/katello/content_view.rb +10 -6
  9. data/app/models/katello/host/content_facet.rb +10 -3
  10. data/db/migrate/20220110223754_update_disconnected_settings.rb +8 -4
  11. data/db/migrate/20230119003859_ensure_repo_username_password_nil_not_blank.rb +1 -1
  12. data/lib/katello/version.rb +1 -1
  13. data/locale/bn/LC_MESSAGES/katello.mo +0 -0
  14. data/locale/cs/LC_MESSAGES/katello.mo +0 -0
  15. data/locale/de/LC_MESSAGES/katello.mo +0 -0
  16. data/locale/en/LC_MESSAGES/katello.mo +0 -0
  17. data/locale/es/LC_MESSAGES/katello.mo +0 -0
  18. data/locale/fr/LC_MESSAGES/katello.mo +0 -0
  19. data/locale/gu/LC_MESSAGES/katello.mo +0 -0
  20. data/locale/hi/LC_MESSAGES/katello.mo +0 -0
  21. data/locale/it/LC_MESSAGES/katello.mo +0 -0
  22. data/locale/ja/LC_MESSAGES/katello.mo +0 -0
  23. data/locale/ka/LC_MESSAGES/katello.mo +0 -0
  24. data/locale/kn/LC_MESSAGES/katello.mo +0 -0
  25. data/locale/ko/LC_MESSAGES/katello.mo +0 -0
  26. data/locale/mr/LC_MESSAGES/katello.mo +0 -0
  27. data/locale/or/LC_MESSAGES/katello.mo +0 -0
  28. data/locale/pa/LC_MESSAGES/katello.mo +0 -0
  29. data/locale/pt/LC_MESSAGES/katello.mo +0 -0
  30. data/locale/pt_BR/LC_MESSAGES/katello.mo +0 -0
  31. data/locale/ru/LC_MESSAGES/katello.mo +0 -0
  32. data/locale/ta/LC_MESSAGES/katello.mo +0 -0
  33. data/locale/te/LC_MESSAGES/katello.mo +0 -0
  34. data/locale/zh_CN/LC_MESSAGES/katello.mo +0 -0
  35. data/locale/zh_TW/LC_MESSAGES/katello.mo +0 -0
  36. data/webpack/components/extensions/HostDetails/Tabs/ModuleStreamsTab/ModuleStreamsTab.js +2 -2
  37. metadata +35 -4
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2919242e09a707d0f3a395e9aaa41cb10a5df4230c72d9fa9c9a2ea4fec084c8
4
- data.tar.gz: 4231fadf860f0c63c5ccbd98e05f96019eae6e91c3e12abf45c22c958ad27c67
3
+ metadata.gz: 81c709207089041832e6dd1b447a01d0d40dc228480d4b4e43b536c853242662
4
+ data.tar.gz: 94ec8c4161ff3f63d2a48d4be430b5942b7a40684c4bc39a6c734597ed9f39bf
5
5
  SHA512:
6
- metadata.gz: 3c3c89ea507b6f247fb1b40b17e615c903e24475b63f9b19d19ebfe1c7d284629b089c87358b3f9a0e35f09b78109823509826c70e21a21dfb8de20ade93a574
7
- data.tar.gz: d71b28cc37b495a5a836031b7598819070e58c881c5e77bfe292816c2639508dbf075ef5d1234f31b96480a6ea131a8fdbdec0ea4609c2fbccab1a78cc96f5cf
6
+ metadata.gz: 1923b0ae05a6bb6c92b7b807793ce795e4ed90a26e598124a0441b49cb30270ec4829eb0ae0a95944de20bb4db5366b9219ac247667e194b8de88c6a7a933e82
7
+ data.tar.gz: 062cd9f6c371824bbe22b4b686735eba4ac0ee5ebd316fe4e06fa74b942e58da6f891ef6c3d5ed92158e9d32878bfc533574419b63836d4f4078a3b85eca54bb
@@ -26,8 +26,10 @@ module Katello
26
26
  api :PUT, "/organizations/:organization_id/simple_content_access/enable",
27
27
  N_("Enable simple content access for a manifest")
28
28
  param :organization_id, :number, :desc => N_("Organization ID"), :required => true
29
+ param :auto_create_overrides, :bool, :desc => N_("Automatically create disabled content overrides for custom products which do not have an attached subscription"), :required => false, :default => true
29
30
  def enable
30
- task = async_task(::Actions::Katello::Organization::SimpleContentAccess::Enable, params[:organization_id])
31
+ auto_create = params.key?(:auto_create_overrides) ? ::Foreman::Cast.to_bool(params[:auto_create_overrides]) : true
32
+ task = async_task(::Actions::Katello::Organization::SimpleContentAccess::Enable, params[:organization_id], auto_create_overrides: auto_create)
31
33
  respond_for_async :resource => task
32
34
  end
33
35
 
@@ -112,15 +112,8 @@ module Actions
112
112
  version.update_content_counts!
113
113
  # update errata applicability counts for all hosts in the CV & Library
114
114
  unless input[:skip_promotion]
115
- content_view = ::Katello::ContentView.find(input[:content_view_id])
116
- lifecycle_environment = ::Katello::KTEnvironment.find(input[:environment_id])
117
- ::Katello::Host::ContentFacet.in_content_views_and_environments(
118
- content_views: [content_view],
119
- lifecycle_environments: [lifecycle_environment]
120
- ).each do |facet|
121
- facet.update_applicability_counts
122
- facet.update_errata_status
123
- end
115
+ environment = ::Katello::KTEnvironment.find(input[:environment_id])
116
+ ::Katello::ContentView.find(input[:content_view_id]).update_host_statuses(environment)
124
117
  end
125
118
 
126
119
  history = ::Katello::ContentViewHistory.find(input[:history_id])
@@ -3,6 +3,16 @@ module Actions
3
3
  module Organization
4
4
  module SimpleContentAccess
5
5
  class Enable < Toggle
6
+ def plan(organization_id, auto_create_overrides: true)
7
+ input[:auto_create_overrides] = auto_create_overrides
8
+ sequence do
9
+ if auto_create_overrides
10
+ plan_action(PrepareContentOverrides, organization_id)
11
+ end
12
+ super(organization_id) # puts plan_self inside the sequence
13
+ end
14
+ end
15
+
6
16
  def content_access_mode_value
7
17
  SIMPLE_CONTENT_ACCESS_ENABLED_VALUE
8
18
  end
@@ -0,0 +1,36 @@
1
+ module Actions
2
+ module Katello
3
+ module Organization
4
+ module SimpleContentAccess
5
+ class PrepareContentOverrides < Actions::Base
6
+ def plan(organization_id)
7
+ Rails.logger.info "PrepareContentOverrides plan: #{organization_id.inspect}"
8
+ organization = ::Organization.find(organization_id.to_i)
9
+ org_name = organization.name
10
+
11
+ plan_self(organization_id: organization_id, organization_name: org_name)
12
+ end
13
+
14
+ def run
15
+ organization = ::Organization.find(input[:organization_id].to_i)
16
+ migrator = ::Katello::Util::ContentOverridesMigrator.new(organization: organization)
17
+
18
+ output[:migrator_result] = migrator.execute_non_sca_overrides!
19
+ end
20
+
21
+ def rescue_strategy
22
+ Dynflow::Action::Rescue::Skip
23
+ end
24
+
25
+ def humanized_name
26
+ N_("Prepare content overrides for Simple Content Access")
27
+ end
28
+
29
+ def humanized_input
30
+ _("for organization %s") % input[:organization_name]
31
+ end
32
+ end
33
+ end
34
+ end
35
+ end
36
+ end
@@ -12,9 +12,15 @@ module Actions
12
12
  attr_reader :organization
13
13
 
14
14
  def plan(organization_id)
15
- @organization = ::Organization.find(organization_id)
15
+ organization = ::Organization.find(organization_id.to_i)
16
+ input[:organization_name] = organization.name
17
+ input[:organization_label] = organization.label
16
18
  action_subject organization
17
- ::Katello::Resources::Candlepin::Owner.update(@organization.label, contentAccessMode: content_access_mode_value)
19
+ plan_self(organization_id: organization_id)
20
+ end
21
+
22
+ def run
23
+ ::Katello::Resources::Candlepin::Owner.update(input[:organization_label], contentAccessMode: content_access_mode_value)
18
24
  end
19
25
 
20
26
  def failure_notification(plan)
@@ -30,6 +36,10 @@ module Actions
30
36
  )
31
37
  end
32
38
 
39
+ def humanized_input
40
+ _("for organization %s") % input[:organization_name]
41
+ end
42
+
33
43
  private
34
44
 
35
45
  def consumer
@@ -0,0 +1,98 @@
1
+ module Katello
2
+ module Util
3
+ class ContentOverridesMigrator # used in Actions::Katello::Organization::SimpleContentAccess::PrepareContentOverrides
4
+ include ActionView::Helpers::TextHelper
5
+
6
+ def initialize(organization:)
7
+ @organization = organization
8
+ end
9
+
10
+ def execute_non_sca_overrides!
11
+ host_errors = create_disabled_overrides_for_non_sca_org_hosts(organization: @organization)
12
+ ak_errors = create_disabled_overrides_for_non_sca_org_activation_keys(organization: @organization)
13
+
14
+ total_errors = host_errors + ak_errors
15
+ finish_message = "Finished creating overrides in non-SCA orgs; #{total_errors == 0 ? "no errors" : "#{pluralize(total_errors, "error")}"}"
16
+ messages = { result: finish_message, errors: total_errors }
17
+ messages[:host_errors] = "Hosts - #{pluralize(host_errors, "error")} creating disabled overrides for unsubscribed content; see log messages above" if host_errors > 0
18
+ messages[:ak_errors] = "Activation keys - #{pluralize(ak_errors, "error")} creating disabled overrides for unsubscribed content; see log messages above" if ak_errors > 0
19
+ messages[:success_message] = "You may now switch all organizations to Simple Content Access mode without any change in access to content." if total_errors == 0
20
+ Rails.logger.info finish_message
21
+ Rails.logger.info messages[:host_errors] if messages[:host_errors]
22
+ Rails.logger.info messages[:ak_errors] if messages[:ak_errors]
23
+ Rails.logger.info messages[:success_message] if messages[:success_message]
24
+ messages
25
+ end
26
+
27
+ def create_disabled_overrides_for_non_sca(consumable:)
28
+ content_finder = ::Katello::ProductContentFinder.new(
29
+ match_subscription: false,
30
+ match_environment: false,
31
+ consumable: consumable
32
+ )
33
+ subscribed_content_finder = ::Katello::ProductContentFinder.new(
34
+ match_subscription: true,
35
+ match_environment: false,
36
+ consumable: consumable
37
+ )
38
+ candlepin_resource = consumable.is_a?(::Katello::Host::SubscriptionFacet) ? ::Katello::Resources::Candlepin::Consumer : ::Katello::Resources::Candlepin::ActivationKey
39
+ consumable_id = consumable.is_a?(::Katello::Host::SubscriptionFacet) ? consumable.uuid : consumable.cp_id
40
+ repos_with_existing_overrides = candlepin_resource.content_overrides(consumable_id).map do |override|
41
+ override[:contentLabel]
42
+ end
43
+ unsubscribed_content = content_finder.custom_content_labels - subscribed_content_finder.custom_content_labels - repos_with_existing_overrides
44
+ new_overrides = unsubscribed_content.map do |repo_label|
45
+ ::Katello::ContentOverride.new(
46
+ repo_label,
47
+ { name: "enabled", value: "0" } # Override to disabled
48
+ )
49
+ end
50
+ return if new_overrides.blank?
51
+ if consumable.is_a? ::Katello::Host::SubscriptionFacet
52
+ ::Katello::Resources::Candlepin::Consumer.update_content_overrides(
53
+ consumable.uuid,
54
+ new_overrides.map(&:to_entitlement_hash)
55
+ )
56
+ else
57
+ ::Katello::Resources::Candlepin::ActivationKey.update_content_overrides(
58
+ consumable.cp_id,
59
+ new_overrides.map(&:to_entitlement_hash)
60
+ )
61
+ end
62
+ end
63
+
64
+ def create_disabled_overrides_for_non_sca_org_hosts(organization:)
65
+ errors = 0
66
+ fail _("Organization must be specified") if organization.blank?
67
+ return 0 if organization.simple_content_access? # subscription attachment is meaningless with SCA
68
+ Rails.logger.info("Hosts - Creating disabled overrides for unsubscribed content in organization #{organization.name}")
69
+ # only registered hosts with content!
70
+ hosts_to_update = organization.hosts.joins(:subscription_facet).where.not("#{Katello::Host::SubscriptionFacet.table_name}.host_id" => nil)
71
+ hosts_to_update.each do |host|
72
+ create_disabled_overrides_for_non_sca(consumable: host.subscription_facet)
73
+ rescue => e
74
+ errors += 1
75
+ Rails.logger.error("Failed to update host #{host.name}: #{e.message}")
76
+ Rails.logger.debug e.backtrace.join("\n")
77
+ end
78
+ errors
79
+ end
80
+
81
+ def create_disabled_overrides_for_non_sca_org_activation_keys(organization:)
82
+ errors = 0
83
+ fail _("Organization must be specified") if organization.blank?
84
+ return 0 if organization.simple_content_access? # subscription attachment is meaningless with SCA
85
+ Rails.logger.info("Activation keys - Creating disabled overrides for unsubscribed content in organization #{organization.name}")
86
+ aks_to_update = organization.activation_keys
87
+ aks_to_update.each do |ak|
88
+ create_disabled_overrides_for_non_sca(consumable: ak)
89
+ rescue => e
90
+ errors += 1
91
+ Rails.logger.error("Failed to update activation key #{ak.name}: #{e.message}")
92
+ Rails.logger.debug e.backtrace.join("\n")
93
+ end
94
+ errors
95
+ end
96
+ end
97
+ end
98
+ end
@@ -652,12 +652,16 @@ module Katello
652
652
  end
653
653
 
654
654
  def check_orphaned_content_facets!(environments: [])
655
- ::Katello::Host::ContentFacet.in_content_views_and_environments(
656
- content_views: [self],
657
- lifecycle_environments: environments
658
- ).each do |facet|
659
- unless facet.host
660
- fail _("Orphaned content facets for deleted hosts exist for the content view and environment. Please run rake task : katello:clean_orphaned_facets and try again!")
655
+ Location.no_taxonomy_scope do
656
+ User.as_anonymous_admin do
657
+ ::Katello::Host::ContentFacet.in_content_views_and_environments(
658
+ content_views: [self],
659
+ lifecycle_environments: environments
660
+ ).each do |facet|
661
+ unless facet.host
662
+ fail _("Orphaned content facets for deleted hosts exist for the content view and environment. Please run rake task : katello:clean_orphaned_facets and try again!")
663
+ end
664
+ end
661
665
  end
662
666
  end
663
667
  end
@@ -298,19 +298,26 @@ module Katello
298
298
  end
299
299
 
300
300
  def katello_agent_installed?
301
- self.host.installed_packages.where("#{Katello::InstalledPackage.table_name}.name" => 'katello-agent').any?
301
+ self.host.installed_packages.where("#{Katello::InstalledPackage.table_name}.name" => 'katello-agent').any? ||
302
+ self.host.installed_debs.where("#{Katello::InstalledDeb.table_name}.name" => 'katello-agent').any?
302
303
  end
303
304
 
304
305
  def tracer_installed?
305
306
  self.host.installed_packages.where("#{Katello::InstalledPackage.table_name}.name" => [ "python-#{HOST_TOOLS_TRACER_PACKAGE_NAME}",
306
307
  "python3-#{HOST_TOOLS_TRACER_PACKAGE_NAME}",
307
- HOST_TOOLS_TRACER_PACKAGE_NAME ]).any?
308
+ HOST_TOOLS_TRACER_PACKAGE_NAME ]).any? ||
309
+ self.host.installed_debs.where("#{Katello::InstalledDeb.table_name}.name" => [ "python-#{HOST_TOOLS_TRACER_PACKAGE_NAME}",
310
+ "python3-#{HOST_TOOLS_TRACER_PACKAGE_NAME}",
311
+ HOST_TOOLS_TRACER_PACKAGE_NAME ]).any?
308
312
  end
309
313
 
310
314
  def host_tools_installed?
311
315
  host.installed_packages.where("#{Katello::InstalledPackage.table_name}.name" => [ "python-#{HOST_TOOLS_PACKAGE_NAME}",
312
316
  "python3-#{HOST_TOOLS_PACKAGE_NAME}",
313
- HOST_TOOLS_PACKAGE_NAME ]).any?
317
+ HOST_TOOLS_PACKAGE_NAME ]).any? ||
318
+ host.installed_debs.where("#{Katello::InstalledDeb.table_name}.name" => [ "python-#{HOST_TOOLS_PACKAGE_NAME}",
319
+ "python3-#{HOST_TOOLS_PACKAGE_NAME}",
320
+ HOST_TOOLS_PACKAGE_NAME ]).any?
314
321
  end
315
322
 
316
323
  def update_errata_status
@@ -1,19 +1,23 @@
1
1
  class UpdateDisconnectedSettings < ActiveRecord::Migration[6.0]
2
+ class FakeSetting < Katello::Model
3
+ self.table_name = 'settings'
4
+ end
5
+
2
6
  def up
3
- setting_disconnected = Setting.find_by(name: 'content_disconnected')
7
+ setting_disconnected = FakeSetting.find_by(name: 'content_disconnected')
4
8
  setting = Setting.find_by(name: 'subscription_connection_enabled')
5
9
 
6
10
  setting&.update!(
7
11
  value: !setting_disconnected&.value
8
12
  )
9
- Setting.where(:name => 'content_disconnected').delete_all
13
+ FakeSetting.where(:name => 'content_disconnected').delete_all
10
14
  end
11
15
 
12
16
  def down
13
17
  remove_column :katello_cdn_configurations, :airgapped
14
18
  setting_disconnected = Setting.find_by(name: 'subscription_connection_enabled')
15
- Setting.set('content_disconnected', N_("A server operating in disconnected mode does not communicate with the Red Hat CDN."),
16
- !setting_disconnected.value, N_('Disconnected mode'))
19
+ FakeSetting.set('content_disconnected', N_("A server operating in disconnected mode does not communicate with the Red Hat CDN."),
20
+ !setting_disconnected.value, N_('Disconnected mode'))
17
21
 
18
22
  Setting.where(:name => 'subscription_connection_enabled').delete_all
19
23
  end
@@ -2,7 +2,7 @@ class EnsureRepoUsernamePasswordNilNotBlank < ActiveRecord::Migration[6.1]
2
2
  def change
3
3
  ::Katello::Repository.library.each do |repo|
4
4
  if repo.upstream_username == '' && repo.upstream_password == ''
5
- repo.update(upstream_username: nil, upstream_password: nil)
5
+ repo.root.update(upstream_username: nil, upstream_password: nil)
6
6
  end
7
7
  end
8
8
  end
@@ -1,3 +1,3 @@
1
1
  module Katello
2
- VERSION = "4.8.0".freeze
2
+ VERSION = "4.8.1".freeze
3
3
  end
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -49,8 +49,8 @@ import {
49
49
  const moduleStreamSupported = ({ os, version }) =>
50
50
  os.match(/RedHat|RHEL|CentOS|Rocky|AlmaLinux|OracleLinux/i) && Number(version) > 7;
51
51
  export const hideModuleStreamsTab = ({ hostDetails }) => {
52
- const osMatch = hostDetails?.operatingsystem_name?.match(/(\w+) (\d+)/);
53
- if (!osMatch) return true;
52
+ const osMatch = hostDetails?.operatingsystem_name?.match(/(\D+) (\d+)/);
53
+ if (!osMatch) return false;
54
54
  const [, os, version] = osMatch;
55
55
  return !(osMatch && moduleStreamSupported({ os, version }));
56
56
  };
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: katello
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.8.0
4
+ version: 4.8.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - N/A
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-04-12 00:00:00.000000000 Z
11
+ date: 2023-05-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -86,14 +86,20 @@ dependencies:
86
86
  requirements:
87
87
  - - ">="
88
88
  - !ruby/object:Gem::Version
89
- version: '5.0'
89
+ version: 7.2.1
90
+ - - "<"
91
+ - !ruby/object:Gem::Version
92
+ version: 8.0.0
90
93
  type: :runtime
91
94
  prerelease: false
92
95
  version_requirements: !ruby/object:Gem::Requirement
93
96
  requirements:
94
97
  - - ">="
95
98
  - !ruby/object:Gem::Version
96
- version: '5.0'
99
+ version: 7.2.1
100
+ - - "<"
101
+ - !ruby/object:Gem::Version
102
+ version: 8.0.0
97
103
  - !ruby/object:Gem::Dependency
98
104
  name: foreman_remote_execution
99
105
  requirement: !ruby/object:Gem::Requirement
@@ -923,6 +929,7 @@ files:
923
929
  - app/lib/actions/katello/organization/manifest_refresh.rb
924
930
  - app/lib/actions/katello/organization/simple_content_access/disable.rb
925
931
  - app/lib/actions/katello/organization/simple_content_access/enable.rb
932
+ - app/lib/actions/katello/organization/simple_content_access/prepare_content_overrides.rb
926
933
  - app/lib/actions/katello/organization/simple_content_access/toggle.rb
927
934
  - app/lib/actions/katello/orphan_cleanup/remove_orphans.rb
928
935
  - app/lib/actions/katello/product/content_create.rb
@@ -1141,6 +1148,7 @@ files:
1141
1148
  - app/lib/katello/resources/registry.rb
1142
1149
  - app/lib/katello/util/candlepin_repository_checker.rb
1143
1150
  - app/lib/katello/util/cdn_var_substitutor.rb
1151
+ - app/lib/katello/util/content_overrides_migrator.rb
1144
1152
  - app/lib/katello/util/data.rb
1145
1153
  - app/lib/katello/util/deduplication_migrator.rb
1146
1154
  - app/lib/katello/util/docker_manifest_clause_generator.rb
@@ -4426,30 +4434,53 @@ files:
4426
4434
  - locale/Makefile
4427
4435
  - locale/README
4428
4436
  - locale/action_names.rb
4437
+ - locale/bn/LC_MESSAGES/katello.mo
4429
4438
  - locale/bn/katello.po
4439
+ - locale/cs/LC_MESSAGES/katello.mo
4430
4440
  - locale/cs/katello.po
4441
+ - locale/de/LC_MESSAGES/katello.mo
4431
4442
  - locale/de/katello.po
4443
+ - locale/en/LC_MESSAGES/katello.mo
4432
4444
  - locale/en/katello.po
4445
+ - locale/es/LC_MESSAGES/katello.mo
4433
4446
  - locale/es/katello.po
4447
+ - locale/fr/LC_MESSAGES/katello.mo
4434
4448
  - locale/fr/katello.po
4449
+ - locale/gu/LC_MESSAGES/katello.mo
4435
4450
  - locale/gu/katello.po
4451
+ - locale/hi/LC_MESSAGES/katello.mo
4436
4452
  - locale/hi/katello.po
4453
+ - locale/it/LC_MESSAGES/katello.mo
4437
4454
  - locale/it/katello.po
4455
+ - locale/ja/LC_MESSAGES/katello.mo
4438
4456
  - locale/ja/katello.po
4457
+ - locale/ka/LC_MESSAGES/katello.mo
4439
4458
  - locale/ka/katello.po
4440
4459
  - locale/katello.pot
4460
+ - locale/kn/LC_MESSAGES/katello.mo
4441
4461
  - locale/kn/katello.po
4462
+ - locale/ko/LC_MESSAGES/katello.mo
4442
4463
  - locale/ko/katello.po
4464
+ - locale/mr/LC_MESSAGES/katello.mo
4443
4465
  - locale/mr/katello.po
4466
+ - locale/or/LC_MESSAGES/katello.mo
4444
4467
  - locale/or/katello.po
4468
+ - locale/pa/LC_MESSAGES/katello.mo
4445
4469
  - locale/pa/katello.po
4470
+ - locale/pt/LC_MESSAGES/katello.mo
4446
4471
  - locale/pt/katello.po
4472
+ - locale/pt_BR/LC_MESSAGES/katello.mo
4447
4473
  - locale/pt_BR/katello.po
4474
+ - locale/ru/LC_MESSAGES/katello.mo
4448
4475
  - locale/ru/katello.po
4476
+ - locale/ta/LC_MESSAGES/katello.mo
4449
4477
  - locale/ta/katello.po
4478
+ - locale/te/LC_MESSAGES/katello.mo
4450
4479
  - locale/te/katello.po
4451
4480
  - locale/update-i18n
4481
+ - locale/zh_CN/LC_MESSAGES/katello.mo
4452
4482
  - locale/zh_CN/katello.po
4483
+ - locale/zh_TW/LC_MESSAGES/katello.mo
4453
4484
  - locale/zh_TW/katello.po
4454
4485
  - package.json
4455
4486
  - vendor/assets/images/katello/add2.png