katello 3.8.0.rc1 → 3.8.0.rc2

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 (123) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/javascripts/katello/common/index.js +1 -0
  3. data/app/assets/javascripts/katello/sync_management/index.js +1 -0
  4. data/app/controllers/katello/api/registry/registry_proxies_controller.rb +1 -1
  5. data/app/controllers/katello/api/v2/environments_controller.rb +0 -1
  6. data/app/controllers/katello/api/v2/ostree_branches_controller.rb +1 -1
  7. data/app/controllers/katello/api/v2/repository_sets_controller.rb +10 -1
  8. data/app/controllers/katello/remote_execution_controller.rb +6 -6
  9. data/app/helpers/katello/hosts_and_hostgroups_helper.rb +37 -9
  10. data/app/lib/katello/resources/registry.rb +4 -4
  11. data/app/models/katello/authorization/repository.rb +2 -1
  12. data/app/models/katello/content_view.rb +12 -4
  13. data/app/models/katello/glue/candlepin/owner.rb +0 -8
  14. data/app/models/katello/glue/candlepin/pool.rb +11 -11
  15. data/app/models/katello/kt_environment.rb +0 -6
  16. data/app/models/katello/product_content.rb +4 -1
  17. data/app/models/katello/rpm.rb +13 -5
  18. data/app/services/katello/ui_notifications/pulp/proxy_disk_space.rb +3 -1
  19. data/app/views/overrides/activation_keys/_host_environment_select.html.erb +2 -3
  20. data/config/katello.yaml.example +5 -0
  21. data/config/routes.rb +1 -0
  22. data/db/seeds.d/75-job_templates.rb +5 -2
  23. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/views/environment-details.html +43 -8
  24. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/discovery/discovery.controller.js +17 -2
  25. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/discovery/views/discovery-create.html +1 -1
  26. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/discovery/views/discovery.html +1 -1
  27. data/engines/bastion_katello/app/assets/stylesheets/bastion_katello/bastion_katello.scss +5 -0
  28. data/lib/katello/version.rb +1 -1
  29. data/package.json +11 -7
  30. data/webpack/__mocks__/foremanReact/components/BreadcrumbBar.js +3 -0
  31. data/webpack/__mocks__/foremanReact/redux/actions/toasts.js +8 -0
  32. data/webpack/__mocks__/foremanReact/redux.js +3 -0
  33. data/webpack/components/Search/Search.test.js +3 -1
  34. data/webpack/components/SelectOrg/SelectOrg.scss +3 -0
  35. data/webpack/components/SelectOrg/SelectOrgAction.js +41 -0
  36. data/webpack/components/SelectOrg/SelectOrgReducer.js +33 -0
  37. data/webpack/components/SelectOrg/SetOrganization.js +116 -0
  38. data/webpack/components/WithOrganization/withOrganization.js +28 -0
  39. data/webpack/containers/Application/config.js +9 -2
  40. data/webpack/containers/Application/index.js +4 -2
  41. data/webpack/global_test_setup.js +6 -0
  42. data/webpack/helpers/caret.js +6 -0
  43. data/webpack/mockRequest.js +3 -3
  44. data/webpack/move_to_foreman/common/helpers.js +45 -8
  45. data/webpack/move_to_foreman/components/common/{emptyState → EmptyState}/index.js +16 -3
  46. data/webpack/move_to_foreman/components/common/table/components/Table.js +1 -1
  47. data/webpack/move_to_foreman/components/common/table/components/__snapshots__/CollapseSubscriptionGroupButton.test.js.snap +2 -2
  48. data/webpack/move_to_foreman/components/common/table/components/__snapshots__/TableSelectionCell.test.js.snap +1 -1
  49. data/webpack/move_to_foreman/components/common/table/components/__snapshots__/TableSelectionHeaderCell.test.js.snap +1 -1
  50. data/webpack/move_to_pf/LoadingState/LoadingState.js +27 -14
  51. data/webpack/move_to_pf/LoadingState/LoadingState.test.js +8 -4
  52. data/webpack/move_to_pf/Select/Select.js +40 -0
  53. data/webpack/move_to_pf/react-bootstrap-select/index.js +12 -1
  54. data/webpack/redux/actions/RedHatRepositories/enabled.js +0 -1
  55. data/webpack/redux/actions/RedHatRepositories/helpers.js +5 -5
  56. data/webpack/redux/actions/RedHatRepositories/sets.js +1 -1
  57. data/webpack/redux/consts.js +6 -0
  58. data/webpack/redux/reducers/index.js +2 -0
  59. data/webpack/scenes/RedHatRepositories/components/EnabledRepository.js +14 -23
  60. data/webpack/scenes/RedHatRepositories/components/EnabledRepositoryContent.js +34 -0
  61. data/webpack/scenes/RedHatRepositories/components/RepositorySetRepository.js +1 -1
  62. data/webpack/scenes/RedHatRepositories/components/SearchBar.js +1 -0
  63. data/webpack/scenes/RedHatRepositories/components/__tests__/EnabledRepository.test.js +36 -0
  64. data/webpack/scenes/RedHatRepositories/components/__tests__/EnabledRepositoryContent.test.js +27 -0
  65. data/webpack/scenes/RedHatRepositories/components/__tests__/__snapshots__/EnabledRepository.test.js.snap +25 -0
  66. data/webpack/scenes/RedHatRepositories/components/__tests__/__snapshots__/EnabledRepositoryContent.test.js.snap +47 -0
  67. data/webpack/scenes/RedHatRepositories/components/__tests__/__snapshots__/RecommendedRepositorySetsToggler.test.js.snap +3 -1
  68. data/webpack/scenes/RedHatRepositories/index.js +7 -3
  69. data/webpack/scenes/RedHatRepositories/index.scss +1 -0
  70. data/webpack/scenes/Subscriptions/Details/SubscriptionDetailActions.js +3 -8
  71. data/webpack/scenes/Subscriptions/Details/SubscriptionDetailProducts.js +5 -3
  72. data/webpack/scenes/Subscriptions/Details/SubscriptionDetailReducer.js +1 -1
  73. data/webpack/scenes/Subscriptions/Details/SubscriptionDetails.js +44 -6
  74. data/webpack/scenes/Subscriptions/Details/SubscriptionDetails.scss +4 -0
  75. data/webpack/scenes/Subscriptions/Details/__tests__/SubscriptionDetailReducer.test.js +3 -1
  76. data/webpack/scenes/Subscriptions/Details/__tests__/SubscriptionDetails.test.js +2 -1
  77. data/webpack/scenes/Subscriptions/Details/__tests__/__snapshots__/SubscriptionDetailProducts.test.js.snap +113 -23
  78. data/webpack/scenes/Subscriptions/Details/__tests__/__snapshots__/SubscriptionDetails.test.js.snap +23 -14
  79. data/webpack/scenes/Subscriptions/Details/__tests__/subscriptionDetails.fixtures.js +3 -4
  80. data/webpack/scenes/Subscriptions/Details/index.js +2 -2
  81. data/webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js +78 -34
  82. data/webpack/scenes/Subscriptions/Manifest/ManifestActions.js +5 -24
  83. data/webpack/scenes/Subscriptions/Manifest/ManifestHistoryReducer.js +9 -1
  84. data/webpack/scenes/Subscriptions/Manifest/__tests__/ManageManifestModal.test.js +3 -0
  85. data/webpack/scenes/Subscriptions/Manifest/__tests__/ManifestActions.test.js +20 -8
  86. data/webpack/scenes/Subscriptions/Manifest/__tests__/ManifestHistoryReducer.test.js +3 -1
  87. data/webpack/scenes/Subscriptions/Manifest/__tests__/__snapshots__/ManageManifestModal.test.js.snap +34 -7
  88. data/webpack/scenes/Subscriptions/Manifest/__tests__/manifest.fixtures.js +9 -16
  89. data/webpack/scenes/Subscriptions/Manifest/index.js +1 -0
  90. data/webpack/scenes/Subscriptions/SubscriptionActions.js +5 -26
  91. data/webpack/scenes/Subscriptions/SubscriptionConstants.js +1 -0
  92. data/webpack/scenes/Subscriptions/SubscriptionHelpers.js +3 -0
  93. data/webpack/scenes/Subscriptions/SubscriptionReducer.js +11 -4
  94. data/webpack/scenes/Subscriptions/SubscriptionsPage.js +31 -36
  95. data/webpack/scenes/Subscriptions/UpstreamSubscriptions/UpstreamSubscriptionsActions.js +3 -12
  96. data/webpack/scenes/Subscriptions/UpstreamSubscriptions/UpstreamSubscriptionsPage.js +57 -27
  97. data/webpack/scenes/Subscriptions/UpstreamSubscriptions/UpstreamSubscriptionsReducer.js +2 -3
  98. data/webpack/scenes/Subscriptions/UpstreamSubscriptions/UpstreamSubscriptionsTableSchema.js +10 -5
  99. data/webpack/scenes/Subscriptions/UpstreamSubscriptions/__tests__/UpstreamSubscriptionsActions.test.js +10 -5
  100. data/webpack/scenes/Subscriptions/UpstreamSubscriptions/__tests__/UpstreamSubscriptionsPage.test.js +50 -5
  101. data/webpack/scenes/Subscriptions/UpstreamSubscriptions/__tests__/UpstreamSubscriptionsReducer.test.js +8 -3
  102. data/webpack/scenes/Subscriptions/UpstreamSubscriptions/__tests__/__snapshots__/UpstreamSubscriptionsPage.test.js.snap +21 -11
  103. data/webpack/scenes/Subscriptions/UpstreamSubscriptions/__tests__/upstreamSubscriptions.fixtures.js +5 -8
  104. data/webpack/scenes/Subscriptions/__tests__/SubscriptionsPage.test.js +2 -0
  105. data/webpack/scenes/Subscriptions/__tests__/SubscriptionsReducer.test.js +9 -3
  106. data/webpack/scenes/Subscriptions/__tests__/__snapshots__/SubscriptionsPage.test.js.snap +14 -2
  107. data/webpack/scenes/Subscriptions/__tests__/subscriptions.fixtures.js +11 -17
  108. data/webpack/scenes/Subscriptions/components/SubscriptionsTable/EntitlementsInlineEditFormatter.js +8 -5
  109. data/webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionsTable.js +45 -58
  110. data/webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionsTableHelpers.js +11 -4
  111. data/webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionsTableSchema.js +2 -2
  112. data/webpack/scenes/Subscriptions/components/SubscriptionsTable/__tests__/EntitlementsInlineEditFormatter.test.js +110 -0
  113. data/webpack/scenes/Subscriptions/components/SubscriptionsTable/__tests__/SubscriptionsTable.test.js +16 -3
  114. data/webpack/scenes/Subscriptions/components/SubscriptionsTable/__tests__/__snapshots__/EntitlementsInlineEditFormatter.test.js.snap +228 -0
  115. data/webpack/scenes/Subscriptions/components/SubscriptionsTable/__tests__/__snapshots__/SubscriptionsTable.test.js.snap +392 -365
  116. data/webpack/scenes/Subscriptions/index.js +1 -0
  117. data/webpack/scenes/Tasks/helpers.js +52 -0
  118. data/webpack/services/api/index.js +17 -1
  119. data/webpack/services/api/testHelpers.js +28 -0
  120. data/webpack/test_setup.js +2 -0
  121. metadata +24 -5
  122. data/config/katello.yaml +0 -89
  123. data/webpack/services/api/fixtures.js +0 -353
@@ -1,353 +0,0 @@
1
- export default [
2
- {
3
- path: '/katello/api/v2/products/:id/repository_sets/:repo_set_id/enable',
4
- searchRegex: /\/katello\/api\/v2\/products\/\d+\/repository_sets\/\d+\/enable/,
5
- type: 'PUT',
6
- response: () => {
7
- const types = ['yum', 'source_rpm', 'debug', 'iso', 'beta', 'kickstart'];
8
-
9
- const output = {
10
- id: Math.round(Math.random() * 500),
11
- name: 'Red Hat Enterprise Linux 6.2 Server for RHS 2 VSA Beta RPMs from RHUI x86_64',
12
- content_type: types[Math.floor(Math.random() * types.length)],
13
- };
14
-
15
- return [
16
- 200,
17
- {
18
- id: 'd4a4432e-4987-4206-aa99-615b5b15fbf8',
19
- label: 'Actions::Katello::RepositorySet::EnableRepository',
20
- pending: false,
21
- username: 'admin',
22
- started_at: '2017-12-19 14:33:41 UTC',
23
- ended_at: '2017-12-19 14:33:44 UTC',
24
- state: 'stopped',
25
- result: 'success',
26
- progress: 1.0,
27
- input: {
28
- services_checked: ['pulp', 'pulp_auth', 'candlepin', 'candlepin_auth'],
29
- repository: {
30
- id: 7,
31
- name: 'Red Hat Enterprise Linux 6.2 Server for RHS 2 VSA Beta RPMs from RHUI x86_64',
32
- label: 'Red_Hat_Enterprise_Linux_6_2_Server_for_RHS_2_VSA_Beta_RPMs_from_RHUI_x86_64',
33
- },
34
- product: {
35
- id: 155,
36
- name: 'Red Hat Storage',
37
- label: 'Red_Hat_Storage',
38
- cp_id: '171',
39
- },
40
- provider: {
41
- id: 2,
42
- name: 'Red Hat',
43
- },
44
- organization: {
45
- id: 1,
46
- name: 'Default Organization',
47
- label: 'Default_Organization',
48
- },
49
- },
50
- output,
51
- humanized: {
52
- action: 'Enable',
53
- input: [],
54
- output: '',
55
- errors: [],
56
- },
57
- cli_example: null,
58
- },
59
- ];
60
- },
61
- },
62
- {
63
- path: '/katello/api/v2/products/:id/repository_sets/:repo_set_id/disable',
64
- searchRegex: /\/katello\/api\/v2\/products\/\d+\/repository_sets\/\d+\/disable/,
65
- type: 'PUT',
66
- response: () => [
67
- 200,
68
- {
69
- id: 'd4a4432e-4987-4206-aa99-615b5b15fbf8',
70
- label: 'Actions::Katello::RepositorySet::DisableRepository',
71
- pending: false,
72
- username: 'admin',
73
- started_at: '2017-12-19 14:33:41 UTC',
74
- ended_at: '2017-12-19 14:33:44 UTC',
75
- state: 'stopped',
76
- result: 'success',
77
- progress: 1.0,
78
- input: {
79
- services_checked: ['pulp', 'pulp_auth', 'candlepin', 'candlepin_auth'],
80
- repository: {
81
- id: 7,
82
- name: 'Red Hat Enterprise Linux 6.2 Server for RHS 2 VSA Beta RPMs from RHUI x86_64',
83
- label: 'Red_Hat_Enterprise_Linux_6_2_Server_for_RHS_2_VSA_Beta_RPMs_from_RHUI_x86_64',
84
- },
85
- product: {
86
- id: 155,
87
- name: 'Red Hat Storage',
88
- label: 'Red_Hat_Storage',
89
- cp_id: '171',
90
- },
91
- provider: {
92
- id: 2,
93
- name: 'Red Hat',
94
- },
95
- organization: {
96
- id: 1,
97
- name: 'Default Organization',
98
- label: 'Default_Organization',
99
- },
100
- },
101
- output: {},
102
- humanized: {
103
- action: 'Disable',
104
- input: [],
105
- output: '',
106
- errors: [],
107
- },
108
- cli_example: null,
109
- },
110
- ],
111
- },
112
- {
113
- path: '/organizations/:id/repository_sets',
114
- searchRegex: /\/organizations\/\d+\/repository_sets$/,
115
- response: () => [
116
- 200,
117
- {
118
- total: 5,
119
- subtotal: 5,
120
- page: null,
121
- per_page: null,
122
- error: null,
123
- search: null,
124
- sort: {
125
- by: null,
126
- order: null,
127
- },
128
- results: [
129
- {
130
- repositories: [],
131
- product: {
132
- name: 'Red hat Enterprise Linux Server 7',
133
- id: 5,
134
- },
135
- type: 'file',
136
- vendor: 'Red Hat',
137
- gpgUrl: 'http://',
138
- contentUrl: '/content/dist/rhel/server/7///source/iso',
139
- id: '2457',
140
- name: 'Red Hat Enterprise Linux 7 Server (Source ISOs)',
141
- label: 'rhel-7-server-source-isos',
142
- },
143
- {
144
- repositories: [],
145
- type: 'yum',
146
- product: {
147
- name: 'Red hat Enterprise Linux Server 7',
148
- id: 5,
149
- },
150
- vendor: 'Red Hat',
151
- gpgUrl: 'file:///etc/pki/rpm-gpg/RPM-GPG-KEY-redhat-release',
152
- contentUrl: '/content/dist/rhel/server/6/6Server//sat-tools/6.1/source/SRPMS',
153
- id: '4187',
154
- name: 'Red Hat Satellite Tools 6.1 (for RHEL 6 Server) (Source RPMs)',
155
- label: 'rhel-6-server-satellite-tools-6.1-source-rpms',
156
- },
157
- {
158
- repositories: [],
159
- type: 'yum',
160
- product: {
161
- name: 'Red hat Enterprise Linux Server 7',
162
- id: 5,
163
- },
164
- vendor: 'Red Hat',
165
- gpgUrl:
166
- 'file:///etc/pki/rpm-gpg/RPM-GPG-KEY-redhat-beta,file:///etc/pki/rpm-gpg/RPM-GPG-KEY-redhat-release',
167
- contentUrl: '/content/beta/rhel/server/6/6Server//rh-common/os',
168
- id: '3076',
169
- name: 'Red Hat Enterprise Linux 6 Server - RH Common Beta (RPMs)',
170
- label: 'rhel-6-server-rh-common-beta-rpms',
171
- },
172
- {
173
- repositories: [],
174
- type: 'yum',
175
- product: {
176
- name: 'Red hat Enterprise Linux Server 7',
177
- id: 5,
178
- },
179
- vendor: 'Red Hat',
180
- gpgUrl: 'file:///etc/pki/rpm-gpg/RPM-GPG-KEY-redhat-release',
181
- contentUrl: '/content/dist/rhel/server/6///rhev-agent/3/os',
182
- id: '1699',
183
- name: 'Red Hat Enterprise Virtualization Agents for RHEL 6 Server (RPMs)',
184
- label: 'rhel-6-server-rhev-agent-rpms',
185
- },
186
- {
187
- repositories: [
188
- {
189
- id: 631,
190
- name: 'Red Hat Enterprise Linux 6 Server Kickstart x86_64 6.8',
191
- releasever: '6.8',
192
- arch: 'x86_64',
193
- },
194
- ],
195
- product: {
196
- name: 'Red hat Enterprise Linux Server 7',
197
- id: 5,
198
- },
199
- type: 'kickstart',
200
- vendor: 'Red Hat',
201
- gpgUrl: 'file:///etc/pki/rpm-gpg/RPM-GPG-KEY-redhat-release',
202
- contentUrl: '/content/dist/rhel/server/6///kickstart',
203
- id: '1952',
204
- name: 'Red Hat Enterprise Linux 6 Server (Kickstart)',
205
- label: 'rhel-6-server-kickstart',
206
- },
207
- ],
208
- },
209
- ],
210
- },
211
- {
212
- // Returns the currently enabled repositories
213
- path: '/repository_sets?organization_id=:id',
214
- searchRegex: /\/organizations\/\d+\/repository_sets/,
215
- response: () => [
216
- 200,
217
- {
218
- total: 5,
219
- subtotal: 5,
220
- page: null,
221
- per_page: null,
222
- error: null,
223
- search: null,
224
- sort: {
225
- by: null,
226
- order: null,
227
- },
228
- results: [
229
- {
230
- repositories: [
231
- {
232
- id: 631,
233
- name: 'Red Hat Enterprise Linux 6 Server Kickstart x86_64 6.8',
234
- releasever: '6.8',
235
- arch: 'x86_64',
236
- },
237
- ],
238
- product: {
239
- name: 'Red hat Enterprise Linux Server 7',
240
- id: 5,
241
- },
242
- type: 'kickstart',
243
- vendor: 'Red Hat',
244
- gpgUrl: 'file:///etc/pki/rpm-gpg/RPM-GPG-KEY-redhat-release',
245
- contentUrl: '/content/dist/rhel/server/6///kickstart',
246
- id: '1952',
247
- name: 'Red Hat Enterprise Linux 6 Server (Kickstart)',
248
- label: 'rhel-6-server-kickstart',
249
- },
250
- ],
251
- },
252
- ],
253
- },
254
- {
255
- path: '/products/:product_id/repository_sets/:content_id/available_repositories',
256
- searchRegex: /\/products\/\d+\/repository_sets\/\d+\/available_repositories/,
257
- response: () => [
258
- 200,
259
- {
260
- total: 6,
261
- subtotal: 6,
262
- page: null,
263
- per_page: null,
264
- error: null,
265
- search: null,
266
- sort: {
267
- by: null,
268
- order: null,
269
- },
270
- results: [
271
- {
272
- substitutions: {
273
- releasever: '7.0',
274
- basearch: 'x86_64',
275
- },
276
- path: '/content/dist/rhel/server/7/7.0/x86_64/supplementary/os',
277
- repo_name: 'Red Hat Enterprise Linux 7 Server - Supplementary RPMs x86_64 7.0',
278
- name: 'Red Hat Enterprise Linux 7 Server - Supplementary (RPMs)',
279
- pulp_id:
280
- 'Default_Organization-Red_Hat_Enterprise_Linux_Server-Red_Hat_Enterprise_Linux_7_Server_-_Supplementary_RPMs_x86_64_7_0',
281
- enabled: false,
282
- promoted: false,
283
- },
284
- {
285
- substitutions: {
286
- releasever: '7.1',
287
- basearch: 'x86_64',
288
- },
289
- path: '/content/dist/rhel/server/7/7.1/x86_64/supplementary/os',
290
- repo_name: 'Red Hat Enterprise Linux 7 Server - Supplementary RPMs x86_64 7.1',
291
- name: 'Red Hat Enterprise Linux 7 Server - Supplementary (RPMs)',
292
- pulp_id:
293
- 'Default_Organization-Red_Hat_Enterprise_Linux_Server-Red_Hat_Enterprise_Linux_7_Server_-_Supplementary_RPMs_x86_64_7_1',
294
- enabled: false,
295
- promoted: false,
296
- },
297
- {
298
- substitutions: {
299
- releasever: '7.2',
300
- basearch: 'x86_64',
301
- },
302
- path: '/content/dist/rhel/server/7/7.2/x86_64/supplementary/os',
303
- repo_name: 'Red Hat Enterprise Linux 7 Server - Supplementary RPMs x86_64 7.2',
304
- name: 'Red Hat Enterprise Linux 7 Server - Supplementary (RPMs)',
305
- pulp_id:
306
- 'Default_Organization-Red_Hat_Enterprise_Linux_Server-Red_Hat_Enterprise_Linux_7_Server_-_Supplementary_RPMs_x86_64_7_2',
307
- enabled: false,
308
- promoted: false,
309
- },
310
- {
311
- substitutions: {
312
- releasever: '7.3',
313
- basearch: 'x86_64',
314
- },
315
- path: '/content/dist/rhel/server/7/7.3/x86_64/supplementary/os',
316
- repo_name: 'Red Hat Enterprise Linux 7 Server - Supplementary RPMs x86_64 7.3',
317
- name: 'Red Hat Enterprise Linux 7 Server - Supplementary (RPMs)',
318
- pulp_id:
319
- 'Default_Organization-Red_Hat_Enterprise_Linux_Server-Red_Hat_Enterprise_Linux_7_Server_-_Supplementary_RPMs_x86_64_7_3',
320
- enabled: false,
321
- promoted: false,
322
- },
323
- {
324
- substitutions: {
325
- releasever: '7.4',
326
- basearch: 'x86_64',
327
- },
328
- path: '/content/dist/rhel/server/7/7.4/x86_64/supplementary/os',
329
- repo_name: 'Red Hat Enterprise Linux 7 Server - Supplementary RPMs x86_64 7.4',
330
- name: 'Red Hat Enterprise Linux 7 Server - Supplementary (RPMs)',
331
- pulp_id:
332
- 'Default_Organization-Red_Hat_Enterprise_Linux_Server-Red_Hat_Enterprise_Linux_7_Server_-_Supplementary_RPMs_x86_64_7_4',
333
- enabled: false,
334
- promoted: false,
335
- },
336
- {
337
- substitutions: {
338
- releasever: '7Server',
339
- basearch: 'x86_64',
340
- },
341
- path: '/content/dist/rhel/server/7/7Server/x86_64/supplementary/os',
342
- repo_name: 'Red Hat Enterprise Linux 7 Server - Supplementary RPMs x86_64 7Server',
343
- name: 'Red Hat Enterprise Linux 7 Server - Supplementary (RPMs)',
344
- pulp_id:
345
- 'Default_Organization-Red_Hat_Enterprise_Linux_Server-Red_Hat_Enterprise_Linux_7_Server_-_Supplementary_RPMs_x86_64_7Server',
346
- enabled: false,
347
- promoted: false,
348
- },
349
- ],
350
- },
351
- ],
352
- },
353
- ];