katello 3.18.0.rc2 → 3.18.2

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

Potentially problematic release.


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

Files changed (144) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/stylesheets/katello/katello.scss +0 -72
  3. data/app/controllers/katello/api/v2/api_controller.rb +1 -2
  4. data/app/controllers/katello/api/v2/capsule_content_controller.rb +2 -2
  5. data/app/controllers/katello/api/v2/content_export_incrementals_controller.rb +98 -0
  6. data/app/controllers/katello/api/v2/content_exports_controller.rb +84 -0
  7. data/app/controllers/katello/api/v2/content_imports_controller.rb +59 -0
  8. data/app/controllers/katello/api/v2/content_view_filters_controller.rb +1 -1
  9. data/app/controllers/katello/api/v2/content_view_versions_controller.rb +56 -94
  10. data/app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb +2 -1
  11. data/app/controllers/katello/api/v2/repositories_controller.rb +2 -0
  12. data/app/controllers/katello/concerns/api/v2/authorization.rb +14 -1
  13. data/app/lib/actions/katello/applicability/hosts/bulk_generate.rb +6 -2
  14. data/app/lib/actions/katello/capsule_content/sync.rb +1 -1
  15. data/app/lib/actions/katello/capsule_content/sync_capsule.rb +7 -2
  16. data/app/lib/actions/katello/content_view/promote_to_environment.rb +1 -1
  17. data/app/lib/actions/katello/content_view/publish.rb +1 -1
  18. data/app/lib/actions/katello/content_view_version/import.rb +2 -1
  19. data/app/lib/actions/katello/content_view_version/import_library.rb +17 -0
  20. data/app/lib/actions/katello/content_view_version/incremental_update.rb +19 -3
  21. data/app/lib/actions/katello/host/update_system_purpose.rb +1 -1
  22. data/app/lib/actions/katello/host/upload_package_profile.rb +1 -1
  23. data/app/lib/actions/katello/host/upload_profiles.rb +1 -1
  24. data/app/lib/actions/middleware/record_smart_proxy_sync_history.rb +24 -4
  25. data/app/lib/actions/pulp3/content_migration.rb +10 -0
  26. data/app/lib/actions/pulp3/content_migration_presenter.rb +59 -0
  27. data/app/lib/actions/pulp3/content_migration_reset.rb +22 -0
  28. data/app/lib/actions/pulp3/content_view/delete_repository_references.rb +1 -1
  29. data/app/lib/actions/pulp3/content_view_version/export.rb +3 -2
  30. data/app/lib/actions/pulp3/import_migration.rb +6 -1
  31. data/app/lib/actions/pulp3/orchestration/content_view_version/copy_version_units_to_library.rb +2 -1
  32. data/app/lib/actions/pulp3/orchestration/content_view_version/export.rb +17 -13
  33. data/app/lib/actions/pulp3/orchestration/content_view_version/export_library.rb +60 -0
  34. data/app/lib/actions/pulp3/orchestration/content_view_version/import.rb +0 -4
  35. data/app/lib/actions/pulp3/orchestration/repository/import_upload.rb +16 -3
  36. data/app/lib/actions/pulp3/repository/copy_content.rb +1 -1
  37. data/app/lib/actions/pulp3/repository/delete.rb +1 -1
  38. data/app/lib/actions/pulp3/repository/save_version.rb +1 -1
  39. data/app/lib/actions/pulp3/repository/upload_tag.rb +18 -0
  40. data/app/models/katello/authorization/content_view_version.rb +25 -2
  41. data/app/models/katello/authorization/content_view_version_export_history.rb +1 -1
  42. data/app/models/katello/authorization/organization.rb +8 -0
  43. data/app/models/katello/concerns/operatingsystem_extensions.rb +2 -0
  44. data/app/models/katello/concerns/pulp_database_unit.rb +19 -0
  45. data/app/models/katello/concerns/redhat_extensions.rb +2 -2
  46. data/app/models/katello/concerns/smart_proxy_extensions.rb +7 -5
  47. data/app/models/katello/content_migration_progress.rb +4 -0
  48. data/app/models/katello/content_view.rb +5 -0
  49. data/app/models/katello/content_view_history.rb +2 -1
  50. data/app/models/katello/content_view_package_filter.rb +1 -1
  51. data/app/models/katello/content_view_version_export_history.rb +6 -1
  52. data/app/models/katello/file_unit.rb +4 -0
  53. data/app/models/katello/host/subscription_facet.rb +4 -0
  54. data/app/models/katello/repository.rb +7 -0
  55. data/app/models/katello/subscription_status.rb +3 -2
  56. data/app/services/katello/applicability/applicable_content_helper.rb +44 -15
  57. data/app/services/katello/pulp3/api/docker.rb +4 -0
  58. data/app/services/katello/pulp3/content_view_version/export.rb +63 -5
  59. data/app/services/katello/pulp3/content_view_version/import.rb +40 -0
  60. data/app/services/katello/pulp3/content_view_version/import_export_common.rb +0 -16
  61. data/app/services/katello/pulp3/content_view_version/import_validator.rb +26 -49
  62. data/app/services/katello/pulp3/docker_manifest.rb +1 -0
  63. data/app/services/katello/pulp3/docker_tag.rb +1 -0
  64. data/app/services/katello/pulp3/erratum.rb +2 -1
  65. data/app/services/katello/pulp3/migration.rb +95 -12
  66. data/app/services/katello/pulp3/migration_plan.rb +2 -2
  67. data/app/services/katello/pulp3/migration_switchover.rb +21 -5
  68. data/app/services/katello/pulp3/repository.rb +10 -5
  69. data/app/services/katello/pulp3/repository/docker.rb +5 -0
  70. data/app/services/katello/pulp3/repository/yum.rb +23 -8
  71. data/app/services/katello/pulp3/task.rb +4 -0
  72. data/app/services/katello/pulp3/task_group.rb +4 -0
  73. data/app/views/katello/api/v2/content_views/show.json.rabl +6 -0
  74. data/app/views/katello/layouts/react.html.erb +3 -2
  75. data/app/views/katello/sync_management/_products.html.erb +1 -1
  76. data/app/views/overrides/activation_keys/_host_tab_pane.html.erb +1 -5
  77. data/config/routes/api/v2.rb +23 -3
  78. data/db/migrate/20150930183738_migrate_content_hosts.rb +1 -1
  79. data/db/migrate/20200514092553_move_katello_fields_from_hostgroups.katello.rb +5 -2
  80. data/db/migrate/20201119211133_pulp3_migration_progress.rb +9 -0
  81. data/db/migrate/20210201165835_add_migration_missing_content.rb +12 -0
  82. data/engines/bastion/app/assets/javascripts/bastion/auth/authorization.service.js +1 -1
  83. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/common/views/katello-agent-notice.html +1 -1
  84. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-system-purpose-modal.html +35 -40
  85. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/register-client.html +1 -1
  86. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion-activation-keys.controller.js +8 -3
  87. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion-content-hosts.controller.js +9 -3
  88. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details.html +1 -1
  89. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-publish.html +4 -0
  90. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/bastion_katello.pot +78 -7
  91. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/de.po +17 -20
  92. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/es.po +17 -24
  93. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/fr.po +1292 -1170
  94. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/it.po +17 -20
  95. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ja.po +858 -807
  96. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ko.po +18 -19
  97. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/pt_BR.po +17 -24
  98. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ru.po +17 -18
  99. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/zh_CN.po +986 -971
  100. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/zh_TW.po +19 -20
  101. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/translations.js +9 -9
  102. data/lib/katello/permission_creator.rb +23 -3
  103. data/lib/katello/tasks/delete_orphaned_content.rake +1 -3
  104. data/lib/katello/tasks/pulp3_content_switchover.rake +3 -1
  105. data/lib/katello/tasks/pulp3_migration.rake +25 -6
  106. data/lib/katello/tasks/pulp3_migration_abort.rake +7 -2
  107. data/lib/katello/tasks/pulp3_migration_approve_corrupted.rake +16 -0
  108. data/lib/katello/tasks/pulp3_migration_reset.rake +26 -0
  109. data/lib/katello/tasks/pulp3_migration_stats.rake +61 -8
  110. data/lib/katello/tasks/pulp3_post_migration_check.rake +1 -3
  111. data/lib/katello/tasks/receptor/extract_orgs.rake +1 -1
  112. data/lib/katello/tasks/reports.rake +4 -1
  113. data/lib/katello/tasks/repository.rake +3 -5
  114. data/lib/katello/version.rb +1 -1
  115. data/locale/action_names.rb +51 -51
  116. data/locale/bn/katello.po +136 -51
  117. data/locale/cs/katello.po +136 -49
  118. data/locale/de/katello.po +136 -48
  119. data/locale/en/katello.po +136 -48
  120. data/locale/es/katello.po +136 -48
  121. data/locale/fr/katello.po +136 -48
  122. data/locale/gu/katello.po +136 -51
  123. data/locale/hi/katello.po +136 -51
  124. data/locale/it/katello.po +136 -48
  125. data/locale/ja/katello.po +136 -48
  126. data/locale/katello.pot +941 -767
  127. data/locale/kn/katello.po +136 -51
  128. data/locale/ko/katello.po +136 -48
  129. data/locale/mr/katello.po +136 -51
  130. data/locale/or/katello.po +136 -51
  131. data/locale/pa/katello.po +136 -51
  132. data/locale/pt/katello.po +136 -51
  133. data/locale/pt_BR/katello.po +136 -48
  134. data/locale/ru/katello.po +136 -48
  135. data/locale/ta/katello.po +136 -51
  136. data/locale/te/katello.po +136 -51
  137. data/locale/zh_CN/katello.po +136 -48
  138. data/locale/zh_TW/katello.po +136 -48
  139. data/webpack/components/TypeAhead/TypeAhead.js +2 -1
  140. data/webpack/components/TypeAhead/pf3Search/TypeAheadSearch.js +2 -1
  141. data/webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js +7 -2
  142. data/webpack/scenes/Subscriptions/Manifest/index.js +1 -0
  143. metadata +31 -19
  144. data/lib/katello/tasks/common.rake +0 -7
@@ -1,6 +1,7 @@
1
1
  import React, { Component } from 'react';
2
2
  import Downshift from 'downshift';
3
3
  import PropTypes from 'prop-types';
4
+ import { translate as __ } from 'foremanReact/common/I18n';
4
5
 
5
6
  import TypeAheadSearch from './pf3Search/TypeAheadSearch';
6
7
  // eslint-disable-next-line import/no-named-default
@@ -101,7 +102,7 @@ TypeAhead.propTypes = {
101
102
  };
102
103
 
103
104
  TypeAhead.defaultProps = {
104
- actionText: 'Search',
105
+ actionText: __('Search'),
105
106
  initialInputValue: '',
106
107
  patternfly4: false,
107
108
  };
@@ -1,6 +1,7 @@
1
1
  import React from 'react';
2
2
  import { InputGroup, Button, Icon } from 'patternfly-react';
3
3
  import PropTypes from 'prop-types';
4
+ import { translate as __ } from 'foremanReact/common/I18n';
4
5
 
5
6
  import TypeAheadInput from './TypeAheadInput';
6
7
  import TypeAheadItems from './TypeAheadItems';
@@ -46,7 +47,7 @@ TypeAheadSearch.propTypes = {
46
47
  };
47
48
 
48
49
  TypeAheadSearch.defaultProps = {
49
- actionText: 'Search',
50
+ actionText: __('Search'),
50
51
  };
51
52
 
52
53
  export default TypeAheadSearch;
@@ -51,8 +51,11 @@ class ManageManifestModal extends Component {
51
51
  showDeleteManifestModal = () =>
52
52
  this.props.setModalOpen({ id: DELETE_MANIFEST_MODAL_ID });
53
53
 
54
- hideDeleteManifestModal = () =>
55
- this.props.setModalClosed({ id: DELETE_MANIFEST_MODAL_ID });
54
+ hideDeleteManifestModal = () => {
55
+ if (this.props.deleteManifestModalExists) {
56
+ this.props.setModalClosed({ id: DELETE_MANIFEST_MODAL_ID });
57
+ }
58
+ };
56
59
 
57
60
  updateRepositoryUrl = (event) => {
58
61
  this.setState({ redhat_repository_url: event.target.value });
@@ -326,6 +329,7 @@ ManageManifestModal.propTypes = {
326
329
  canImportManifest: PropTypes.bool,
327
330
  canDeleteManifest: PropTypes.bool,
328
331
  isManifestImported: PropTypes.bool,
332
+ deleteManifestModalExists: PropTypes.bool,
329
333
  canEditOrganizations: PropTypes.bool,
330
334
  disableManifestActions: PropTypes.bool,
331
335
  disabledReason: PropTypes.string,
@@ -351,6 +355,7 @@ ManageManifestModal.defaultProps = {
351
355
  canImportManifest: false,
352
356
  canDeleteManifest: false,
353
357
  isManifestImported: false,
358
+ deleteManifestModalExists: false,
354
359
  canEditOrganizations: false,
355
360
  simpleContentAccess: false,
356
361
  simpleContentAccessEligible: undefined,
@@ -20,6 +20,7 @@ const mapStateToProps = state => ({
20
20
  simpleContentAccess: selectSimpleContentAccessEnabled(state),
21
21
  isManifestImported: selectIsManifestImported(state),
22
22
  modalOpenState: state.foremanModals.ManageManifestModal,
23
+ deleteManifestModalExists: !!state.foremanModals.deleteManifestModal,
23
24
  manifestActionStarted: selectManifestActionStarted(state),
24
25
  simpleContentAccessEligible: selectSimpleContentAccessEligible(state),
25
26
  });
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: 3.18.0.rc2
4
+ version: 3.18.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - N/A
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-11-18 00:00:00.000000000 Z
11
+ date: 2021-03-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -87,6 +87,9 @@ dependencies:
87
87
  - - ">="
88
88
  - !ruby/object:Gem::Version
89
89
  version: 0.14.1
90
+ - - "<"
91
+ - !ruby/object:Gem::Version
92
+ version: '4.0'
90
93
  type: :runtime
91
94
  prerelease: false
92
95
  version_requirements: !ruby/object:Gem::Requirement
@@ -94,6 +97,9 @@ dependencies:
94
97
  - - ">="
95
98
  - !ruby/object:Gem::Version
96
99
  version: 0.14.1
100
+ - - "<"
101
+ - !ruby/object:Gem::Version
102
+ version: '4.0'
97
103
  - !ruby/object:Gem::Dependency
98
104
  name: foreman_remote_execution
99
105
  requirement: !ruby/object:Gem::Requirement
@@ -360,46 +366,40 @@ dependencies:
360
366
  requirements:
361
367
  - - ">="
362
368
  - !ruby/object:Gem::Version
363
- version: 3.6.2
369
+ version: 3.9.0
364
370
  - - "<"
365
371
  - !ruby/object:Gem::Version
366
- version: 3.8.0
372
+ version: 3.10.0
367
373
  type: :runtime
368
374
  prerelease: false
369
375
  version_requirements: !ruby/object:Gem::Requirement
370
376
  requirements:
371
377
  - - ">="
372
378
  - !ruby/object:Gem::Version
373
- version: 3.6.2
379
+ version: 3.9.0
374
380
  - - "<"
375
381
  - !ruby/object:Gem::Version
376
- version: 3.8.0
382
+ version: 3.10.0
377
383
  - !ruby/object:Gem::Dependency
378
384
  name: pulp_2to3_migration_client
379
385
  requirement: !ruby/object:Gem::Requirement
380
386
  requirements:
381
387
  - - ">="
382
388
  - !ruby/object:Gem::Version
383
- version: 0.3.0
389
+ version: 0.7.0
384
390
  - - "<"
385
391
  - !ruby/object:Gem::Version
386
- version: 0.6.0
387
- - - "!="
388
- - !ruby/object:Gem::Version
389
- version: 0.4.0
392
+ version: 0.8.0
390
393
  type: :runtime
391
394
  prerelease: false
392
395
  version_requirements: !ruby/object:Gem::Requirement
393
396
  requirements:
394
397
  - - ">="
395
398
  - !ruby/object:Gem::Version
396
- version: 0.3.0
399
+ version: 0.7.0
397
400
  - - "<"
398
401
  - !ruby/object:Gem::Version
399
- version: 0.6.0
400
- - - "!="
401
- - !ruby/object:Gem::Version
402
- version: 0.4.0
402
+ version: 0.8.0
403
403
  - !ruby/object:Gem::Dependency
404
404
  name: pulp_certguard_client
405
405
  requirement: !ruby/object:Gem::Requirement
@@ -720,6 +720,9 @@ files:
720
720
  - app/controllers/katello/api/v2/capsule_content_controller.rb
721
721
  - app/controllers/katello/api/v2/capsules_controller.rb
722
722
  - app/controllers/katello/api/v2/content_credentials_controller.rb
723
+ - app/controllers/katello/api/v2/content_export_incrementals_controller.rb
724
+ - app/controllers/katello/api/v2/content_exports_controller.rb
725
+ - app/controllers/katello/api/v2/content_imports_controller.rb
723
726
  - app/controllers/katello/api/v2/content_uploads_controller.rb
724
727
  - app/controllers/katello/api/v2/content_view_components_controller.rb
725
728
  - app/controllers/katello/api/v2/content_view_filter_rules_controller.rb
@@ -884,6 +887,7 @@ files:
884
887
  - app/lib/actions/katello/content_view_version/destroy.rb
885
888
  - app/lib/actions/katello/content_view_version/export.rb
886
889
  - app/lib/actions/katello/content_view_version/import.rb
890
+ - app/lib/actions/katello/content_view_version/import_library.rb
887
891
  - app/lib/actions/katello/content_view_version/incremental_update.rb
888
892
  - app/lib/actions/katello/content_view_version/republish_repositories.rb
889
893
  - app/lib/actions/katello/environment/destroy.rb
@@ -1067,6 +1071,8 @@ files:
1067
1071
  - app/lib/actions/pulp3/content_guard/refresh.rb
1068
1072
  - app/lib/actions/pulp3/content_guard/refresh_all_distributions.rb
1069
1073
  - app/lib/actions/pulp3/content_migration.rb
1074
+ - app/lib/actions/pulp3/content_migration_presenter.rb
1075
+ - app/lib/actions/pulp3/content_migration_reset.rb
1070
1076
  - app/lib/actions/pulp3/content_view/delete_repository_references.rb
1071
1077
  - app/lib/actions/pulp3/content_view_version/create_exporter.rb
1072
1078
  - app/lib/actions/pulp3/content_view_version/create_importer.rb
@@ -1077,6 +1083,7 @@ files:
1077
1083
  - app/lib/actions/pulp3/import_migration.rb
1078
1084
  - app/lib/actions/pulp3/orchestration/content_view_version/copy_version_units_to_library.rb
1079
1085
  - app/lib/actions/pulp3/orchestration/content_view_version/export.rb
1086
+ - app/lib/actions/pulp3/orchestration/content_view_version/export_library.rb
1080
1087
  - app/lib/actions/pulp3/orchestration/content_view_version/import.rb
1081
1088
  - app/lib/actions/pulp3/orchestration/orphan_cleanup/remove_orphans.rb
1082
1089
  - app/lib/actions/pulp3/orchestration/repository/copy_all_units.rb
@@ -1128,6 +1135,7 @@ files:
1128
1135
  - app/lib/actions/pulp3/repository/update_remote.rb
1129
1136
  - app/lib/actions/pulp3/repository/update_repository.rb
1130
1137
  - app/lib/actions/pulp3/repository/upload_file.rb
1138
+ - app/lib/actions/pulp3/repository/upload_tag.rb
1131
1139
  - app/lib/katello/README
1132
1140
  - app/lib/katello/api/constraints/activation_key_constraint.rb
1133
1141
  - app/lib/katello/api/mapper_extensions.rb
@@ -1266,6 +1274,7 @@ files:
1266
1274
  - app/models/katello/content_facet_applicable_rpm.rb
1267
1275
  - app/models/katello/content_facet_erratum.rb
1268
1276
  - app/models/katello/content_facet_repository.rb
1277
+ - app/models/katello/content_migration_progress.rb
1269
1278
  - app/models/katello/content_override.rb
1270
1279
  - app/models/katello/content_view.rb
1271
1280
  - app/models/katello/content_view_component.rb
@@ -2131,6 +2140,8 @@ files:
2131
2140
  - db/migrate/20201012172713_remove_gpg_key_perms.rb
2132
2141
  - db/migrate/20201012192035_add_metadata_to_katello_content_view_version_export_history.rb
2133
2142
  - db/migrate/20201021150008_add_import_only_to_katello_content_view.rb
2143
+ - db/migrate/20201119211133_pulp3_migration_progress.rb
2144
+ - db/migrate/20210201165835_add_migration_missing_content.rb
2134
2145
  - db/seeds.d/101-locations.rb
2135
2146
  - db/seeds.d/102-organizations.rb
2136
2147
  - db/seeds.d/104-proxy.rb
@@ -4476,7 +4487,6 @@ files:
4476
4487
  - lib/katello/tasks/clean_backend_objects.rake
4477
4488
  - lib/katello/tasks/clean_old_file_repos.rake
4478
4489
  - lib/katello/tasks/clean_published_repo_directories.rake
4479
- - lib/katello/tasks/common.rake
4480
4490
  - lib/katello/tasks/delete_orphaned_content.rake
4481
4491
  - lib/katello/tasks/import_applicability.rake
4482
4492
  - lib/katello/tasks/import_subscriptions.rake
@@ -4485,6 +4495,8 @@ files:
4485
4495
  - lib/katello/tasks/pulp3_content_switchover.rake
4486
4496
  - lib/katello/tasks/pulp3_migration.rake
4487
4497
  - lib/katello/tasks/pulp3_migration_abort.rake
4498
+ - lib/katello/tasks/pulp3_migration_approve_corrupted.rake
4499
+ - lib/katello/tasks/pulp3_migration_reset.rake
4488
4500
  - lib/katello/tasks/pulp3_migration_stats.rake
4489
4501
  - lib/katello/tasks/pulp3_post_migration_check.rake
4490
4502
  - lib/katello/tasks/receptor/extract_orgs.rake
@@ -5061,9 +5073,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
5061
5073
  version: '0'
5062
5074
  required_rubygems_version: !ruby/object:Gem::Requirement
5063
5075
  requirements:
5064
- - - ">"
5076
+ - - ">="
5065
5077
  - !ruby/object:Gem::Version
5066
- version: 1.3.1
5078
+ version: '0'
5067
5079
  requirements: []
5068
5080
  rubygems_version: 3.1.4
5069
5081
  signing_key:
@@ -1,7 +0,0 @@
1
- namespace :katello do
2
- task :disable_dynflow do
3
- #Ensures that we run as a dynflow 'client'
4
- ::Rails.application.dynflow.initialize!
5
- ForemanTasks.dynflow.config.remote = true
6
- end
7
- end