foreman_scc_manager 1.6.3 → 1.7.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (36) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +3 -0
  3. data/Rakefile +1 -1
  4. data/app/controllers/api/v2/scc_accounts_controller.rb +159 -0
  5. data/app/controllers/api/v2/scc_products_controller.rb +64 -0
  6. data/app/models/scc_account.rb +2 -1
  7. data/app/models/scc_product.rb +1 -0
  8. data/app/views/api/v2/scc_accounts/base.json.rabl +5 -0
  9. data/app/views/api/v2/scc_accounts/index.json.rabl +4 -0
  10. data/app/views/api/v2/scc_accounts/main.json.rabl +5 -0
  11. data/app/views/api/v2/scc_accounts/show.json.rabl +4 -0
  12. data/app/views/api/v2/scc_products/base.json.rabl +5 -0
  13. data/app/views/api/v2/scc_products/index.json.rabl +4 -0
  14. data/app/views/api/v2/scc_products/main.json.rabl +5 -0
  15. data/app/views/api/v2/scc_products/show.json.rabl +5 -0
  16. data/config/routes.rb +30 -1
  17. data/lib/foreman_scc_manager/engine.rb +28 -9
  18. data/lib/foreman_scc_manager/version.rb +1 -1
  19. data/lib/tasks/rubocop.rake +0 -1
  20. data/locale/action_names.rb +5 -61
  21. data/locale/de/LC_MESSAGES/foreman_scc_manager.mo +0 -0
  22. data/locale/de/foreman_scc_manager.po +139 -210
  23. data/locale/en/LC_MESSAGES/foreman_scc_manager.mo +0 -0
  24. data/locale/en/foreman_scc_manager.po +129 -152
  25. data/locale/foreman_scc_manager.pot +120 -212
  26. data/test/controllers/api/v2/scc_accounts_test.rb +302 -0
  27. data/test/controllers/api/v2/scc_products_test.rb +40 -0
  28. data/test/features/sync_test.rb +3 -6
  29. data/test/{features → fixtures/files}/data_products_page1.json +0 -0
  30. data/test/{features → fixtures/files}/data_products_page2.json +0 -0
  31. data/test/fixtures/files/data_repositories.json +502 -0
  32. data/test/{features → fixtures/files}/data_subscriptions.json +0 -0
  33. data/test/models/scc_account_test.rb +4 -4
  34. data/test/models/scc_product_test.rb +2 -2
  35. data/test/test_plugin_helper.rb +2 -0
  36. metadata +25 -10
@@ -0,0 +1,302 @@
1
+ require 'test_plugin_helper'
2
+
3
+ class Api::V2::SccAccountsControllerTest < ActionController::TestCase
4
+ # rubocop:disable Metrics/MethodLength
5
+ def setup
6
+ @scc_account = scc_accounts(:one)
7
+ end
8
+
9
+ def scc_setup
10
+ # test_connection:
11
+ stub_request(:get, 'https://scc.example.com/connect/organizations/subscriptions')
12
+ .with(
13
+ headers: {
14
+ 'Accept' => 'application/vnd.scc.suse.com.v4+json',
15
+ 'Authorization' => 'Basic b25ldXNlcjpvbmVwYXNz',
16
+ 'Host' => 'scc.example.com'
17
+ }
18
+ ).to_return(
19
+ status: 200,
20
+ body: fixture_file_upload('data_subscriptions.json').read,
21
+ headers: {
22
+ server: 'nginx',
23
+ date: 'Tue, 05 Mar 2019 15:07:38 GMT',
24
+ content_type: 'application/json; charset=utf-8',
25
+ transfer_encoding: 'chunked',
26
+ connection: 'keep-alive',
27
+ vary: 'Accept-Encoding',
28
+ x_frame_options: 'SAMEORIGIN',
29
+ x_xss_protection: '1; mode=block',
30
+ x_content_type_options: 'nosniff',
31
+ per_page: '10',
32
+ total: '3',
33
+ scc_api_version: 'v4',
34
+ etag: 'W/"0123456789abcdef0123456789abcdef"',
35
+ cache_control: 'max-age=0, private, must-revalidate',
36
+ set_cookie: [
37
+ 'XSRF-TOKEN=TG9yZW0gaXBzdW0gZG9sb3Igc2l0IGFtZXQsIGNvbnNlY3RldHVyIGFkaXBp%0Ac2NpbmcgZWxpdCwgc2VkIGRvIGVpdXNtb2QgdGVtcG9yIGluY2l; path=/; secure',
38
+ 'Uy#u~osh#oh3ahv.op0OII; Expires=Fri, 02-Mar-2029 15:07:20 GMT; Path=/'
39
+ ],
40
+ x_request_id: '67450237-e4aa-4994-a47d-ed3ce142555b',
41
+ x_runtime: '0.144083',
42
+ strict_transport_security: 'max-age=15552000, max-age=300',
43
+ content_encoding: 'gzip'
44
+ }
45
+ )
46
+
47
+ ############
48
+ # Repositories #
49
+ ############
50
+ stub_request(:get, 'https://scc.example.com/connect/organizations/repositories')
51
+ .with(
52
+ headers: {
53
+ 'Accept' => 'application/vnd.scc.suse.com.v4+json',
54
+ 'Authorization' => 'Basic b25ldXNlcjpvbmVwYXNz',
55
+ 'Host' => 'scc.example.com'
56
+ }
57
+ ).to_return(
58
+ status: 200,
59
+ body: fixture_file_upload('data_repositories.json').read,
60
+ headers: {
61
+ server: 'nginx',
62
+ date: 'Mon, 07 Oct 2019 13:14:31 GMT',
63
+ content_type: 'application/json; charset=utf-8',
64
+ transfer_encoding: 'chunked',
65
+ connection: 'keep-alive',
66
+ vary: 'Accept-Encoding',
67
+ x_frame_options: 'SAMEORIGIN',
68
+ x_xss_protection: '1; mode=block',
69
+ x_content_type_options: 'nosniff',
70
+ per_page: '50',
71
+ total: '3',
72
+ scc_api_version: 'v4',
73
+ etag: 'W/"73c45129512441a82f6b0752e53ed1c5"',
74
+ cache_control: 'max-age=0, private, must-revalidate',
75
+ set_cookie: [
76
+ 'XSRF-TOKEN=SEZSwgerzOHlW5vYxxcVxrRQ3J4lKMmwGAIXpDyuTyCtcgQqrkMDlSdlxhU6rQp71%2Fdic6jiKgVbJB6vCeAJ2A%3D%3D; path=/; secure',
77
+ 'TbBx+jfg=v1XitvAA@@ncY; Expires=Thu, 04-Oct-2029 13:14:57 GMT; Path=/'
78
+ ],
79
+ x_request_id: '2418bd69-efab-4d78-9a73-63570744d2cb',
80
+ x_runtime: '0.645444',
81
+ strict_transport_security: 'max-age=15552000, max-age=300',
82
+ content_encoding: 'gzip'
83
+ }
84
+ )
85
+ ############
86
+ # Products #
87
+ ############
88
+ # products page1
89
+ stub_request(:get, 'https://scc.example.com/connect/organizations/products')
90
+ .with(
91
+ headers: {
92
+ 'Accept' => 'application/vnd.scc.suse.com.v4+json',
93
+ 'Authorization' => 'Basic b25ldXNlcjpvbmVwYXNz',
94
+ 'Host' => 'scc.example.com'
95
+ }
96
+ ).to_return(
97
+ status: 200,
98
+ body: fixture_file_upload('data_products_page1.json').read,
99
+ headers: {
100
+ server: 'nginx',
101
+ date: 'Mon, 11 Mar 2019 15:37:00 GMT',
102
+ content_type: 'application/json; charset=utf-8',
103
+ transfer_encoding: 'chunked',
104
+ connection: 'keep-alive',
105
+ vary: 'Accept-Encoding',
106
+ x_frame_options: 'SAMEORIGIN',
107
+ x_xss_protection: '1; mode=block',
108
+ x_content_type_options: 'nosniff',
109
+ link: '<https://scc.example.com/connect/organizations/products?page=2>; rel="last", <https://scc.example.com/connect/organizations/products?page=2>; rel="next"',
110
+ per_page: 25,
111
+ total: 50,
112
+ scc_api_version: 'v4',
113
+ etag: '57fbfddfb5cc165b2581d297cad27a53',
114
+ cache_control: 'max-age=0, private, must-revalidate',
115
+ set_cookie: [
116
+ 'XSRF-TOKEN=EABKsiefcpa7dMNEXRixmihKeUfIvXF4AwmNQt2wZG5Fm%2FPKvR0%2FMBDVV5lZJ3p4waUAcds2xWv42vbKg9GQhg%3D%3D; path=/; secure',
117
+ 'TbBx+jfg=v1jitvAA@@UII; Expires=Thu, 08-Mar-2029 15:37:15 GMT; Path=/'
118
+ ],
119
+ x_request_id: 'd2797941-1aed-499c-8e06-b4cb52515443',
120
+ x_runtime: '6.671012',
121
+ strict_transport_security: 'max-age=15552000, max-age=300',
122
+ content_encoding: 'gzip'
123
+ }
124
+ )
125
+ # products page2
126
+ stub_request(:get, 'https://scc.example.com/connect/organizations/products?page=2')
127
+ .with(
128
+ headers: {
129
+ 'Accept' => 'application/vnd.scc.suse.com.v4+json',
130
+ 'Authorization' => 'Basic b25ldXNlcjpvbmVwYXNz',
131
+ 'Host' => 'scc.example.com'
132
+ }
133
+ ).to_return(
134
+ status: 200,
135
+ body: fixture_file_upload('data_products_page2.json').read,
136
+ headers: {
137
+ server: 'nginx',
138
+ date: 'Mon, 11 Mar 2019 15:37:19 GMT',
139
+ content_type: 'application/json; charset=utf-8',
140
+ transfer_encoding: 'chunked',
141
+ connection: 'keep-alive',
142
+ vary: 'Accept-Encoding',
143
+ x_frame_options: 'SAMEORIGIN',
144
+ x_xss_protection: '1; mode=block',
145
+ x_content_type_options: 'nosniff',
146
+ link: '<https://scc.example.com/connect/organizations/products?page=1>; rel="first", <https://scc.example.com/connect/organizations/products?page=1>; rel="prev"',
147
+ per_page: 3,
148
+ total: 2,
149
+ scc_api_version: 'v4',
150
+ etag: '3fb638e3ab553dc6c88ef9914540b4bd',
151
+ cache_control: 'max-age=0, private, must-revalidate',
152
+ set_cookie: [
153
+ 'XSRF-TOKEN=z3bGc45lQxf%2FXq7qN7cwzJrK1zcw4e7uuskVCPejeN0zv3ExUcb8ev3jhGnDGJaSz3ZwV7Dk0SdLII%2FOcI2eEw%3D%3D; path=/; secure',
154
+ 'TbBx+jfg=v1oytvAA@@I73; Expires=Thu, 08-Mar-2029 15:37:23 GMT; Path=/'
155
+ ],
156
+ x_request_id: '17e6707a-1134-403d-a49c-7344442446c1',
157
+ x_runtime: '6.671012',
158
+ strict_transport_security: 'max-age=15552000, max-age=300',
159
+ content_encoding: 'gzip'
160
+ }
161
+ )
162
+ end
163
+ # rubocop:enable Metrics/MethodLength
164
+
165
+ test 'should get index' do
166
+ get :index, params: {}
167
+ assert_response :success
168
+ assert_not_nil assigns(:scc_accounts)
169
+ body = ActiveSupport::JSON.decode(@response.body)
170
+ assert_not_empty body
171
+ assert_not_empty body['results']
172
+ end
173
+
174
+ test 'should show scc_account' do
175
+ get :show, params: { :id => @scc_account.id }
176
+ assert_not_nil assigns(:scc_account)
177
+ assert_response :success
178
+ end
179
+
180
+ test 'should 404 for unknown scc_account' do
181
+ get :show, params: { :id => 'does-not-exist' }
182
+ assert_response :not_found
183
+ end
184
+
185
+ test 'should create scc_account' do
186
+ account = scc_accounts(:two)
187
+ organization = get_organization
188
+ assert organization
189
+ assert account
190
+ post :create, params: { :name => account.name, :login => account.login, :password => account.password, :organization_id => organization.id }
191
+ assert_response :created
192
+ end
193
+
194
+ test 'should refuse create scc_account' do
195
+ account = scc_accounts(:two)
196
+ account.login = nil
197
+ assert_nil account.login
198
+ organization = get_organization
199
+ assert organization
200
+ post :create, params: { :name => account.name, :password => account.password, :login => account.login, :organization_id => organization.id }
201
+ assert_equal response.status, 500
202
+ end
203
+
204
+ test 'should update scc_account' do
205
+ account = scc_accounts(:two)
206
+ put :update, params: { id: account.id, :scc_account => { :interval => 'weekly' } }
207
+ assert_equal 'weekly', assigns(:scc_account).interval
208
+ assert_response :ok
209
+ end
210
+
211
+ test 'should refuse update scc_account' do
212
+ account = scc_accounts(:two)
213
+ put :update, params: { id: account.id, :scc_account => { :interval => 'yearly' } }
214
+ assert_equal 'yearly', assigns(:scc_account).interval
215
+ assert_response :unprocessable_entity
216
+ end
217
+
218
+ test 'new account SCC server connection-test' do
219
+ scc_setup
220
+ account = scc_accounts(:one)
221
+ assert account
222
+ post :test_connection, params: { :scc_account => { :login => account.login, :password => account.password, :base_url => account.base_url } }
223
+ assert_response :ok
224
+ end
225
+
226
+ test 'new account SCC server fail connection-test' do
227
+ stub_request(:get, 'https://scc.example.com/connect/organizations/subscriptions')
228
+ .with(
229
+ headers: {
230
+ 'Accept' => 'application/vnd.scc.suse.com.v4+json',
231
+ 'Authorization' => 'Basic b25ldXNlcjpvbmVwYXNz',
232
+ 'Host' => 'scc.example.com'
233
+ }
234
+ ).to_return(status: 404)
235
+ account = scc_accounts(:one)
236
+ assert account
237
+ post :test_connection, params: { :scc_account => { :login => account.login, :password => account.password, :base_url => account.base_url } }
238
+ assert_response :not_found
239
+ assert_match response.body, '"Failed"'
240
+ end
241
+
242
+ test 'existing account SCC server connection-test' do
243
+ scc_setup
244
+ account = scc_accounts(:one)
245
+ assert account
246
+ put :test_connection, params: { :id => account.id }
247
+ assert_response :ok
248
+ end
249
+
250
+ test 'existing account SCC server fail connection-test' do
251
+ stub_request(:get, 'https://scc.example.com/connect/organizations/subscriptions')
252
+ .with(
253
+ headers: {
254
+ 'Accept' => 'application/vnd.scc.suse.com.v4+json',
255
+ 'Authorization' => 'Basic b25ldXNlcjpvbmVwYXNz',
256
+ 'Host' => 'scc.example.com'
257
+ }
258
+ ).to_return(status: 404)
259
+ account = scc_accounts(:one)
260
+ assert account
261
+ post :test_connection, params: { :id => account.id }
262
+ assert_response :not_found
263
+ assert_match response.body, '"Failed"'
264
+ end
265
+
266
+ test 'SCC server sync products' do
267
+ scc_setup
268
+ account = scc_accounts(:one)
269
+ assert account
270
+ put :sync, params: { :id => account.id }
271
+ assert_response :ok
272
+ end
273
+
274
+ test 'SCC server bulk subscribe products' do
275
+ scc_setup
276
+ account = scc_accounts(:one)
277
+ product1 = scc_products(:one)
278
+ product2 = scc_products(:two)
279
+ account.scc_products = [product1, product2]
280
+ put :bulk_subscribe, params: { :id => account.id, :scc_subscribe_product_ids => [product1.id, product2.id] }
281
+ assert_response :ok
282
+ end
283
+
284
+ test 'SCC server bulk subscribe products fails' do
285
+ scc_setup
286
+ account = scc_accounts(:one)
287
+ product1 = scc_products(:one)
288
+ product2 = scc_products(:two)
289
+ account.scc_products = [product1, product2]
290
+ put :bulk_subscribe, params: { :id => account.id, :scc_subscribe_product_ids => [] }
291
+ assert_response :expectation_failed
292
+ assert_match response.body, '"No Product selected"'
293
+ end
294
+
295
+ test 'should delete scc_account' do
296
+ account = scc_accounts(:two)
297
+ assert_difference 'SccAccount.count', -1 do
298
+ delete :destroy, params: { :id => account.id }
299
+ end
300
+ assert_response :ok
301
+ end
302
+ end
@@ -0,0 +1,40 @@
1
+ require 'test_plugin_helper'
2
+
3
+ class Api::V2::SccProductsControllerTest < ActionController::TestCase
4
+ def setup
5
+ @scc_account = scc_accounts(:one)
6
+ @scc_product1 = scc_products(:one)
7
+ @scc_product2 = scc_products(:two)
8
+ @scc_account.scc_products = [@scc_product1, @scc_product2]
9
+ end
10
+
11
+ test 'should get index' do
12
+ get :index, params: { :scc_account_id => @scc_account.id }
13
+ assert_response :success
14
+ assert_not_nil assigns(:scc_products)
15
+ body = ActiveSupport::JSON.decode(@response.body)
16
+ assert_not_empty body
17
+ assert_not_empty body['results']
18
+ end
19
+
20
+ test 'should show scc_product' do
21
+ get :show, params: { :id => @scc_product1.id, :scc_account_id => @scc_account.id }
22
+ assert_not_nil assigns(:scc_product)
23
+ assert_response :success
24
+ end
25
+
26
+ test 'should 404 for unknown scc_product' do
27
+ get :show, params: { :id => 'does-not-exist', :scc_account_id => @scc_account.id }
28
+ assert_response :not_found
29
+ end
30
+
31
+ test 'SCC server subscribe product' do
32
+ put :subscribe, params: { :id => @scc_product1.id, :scc_account_id => @scc_account.id }
33
+ assert_response :ok
34
+ end
35
+
36
+ test 'SCC server subscribe product not found' do
37
+ put :subscribe, params: { :id => 'doest-not-exit', :scc_account_id => @scc_account.id }
38
+ assert_response :not_found
39
+ end
40
+ end
@@ -8,13 +8,12 @@ class SccAccountSyncTest < ActiveSupport::TestCase
8
8
  .with(
9
9
  headers: {
10
10
  'Accept' => 'application/vnd.scc.suse.com.v4+json',
11
- 'Accept-Encoding' => 'gzip, deflate',
12
11
  'Authorization' => 'Basic b25ldXNlcjpvbmVwYXNz',
13
12
  'Host' => 'scc.example.com'
14
13
  }
15
14
  ).to_return(
16
15
  status: 200,
17
- body: Zlib.gzip(File.read("#{File.dirname(__FILE__)}/data_subscriptions.json")),
16
+ body: fixture_file_upload('data_subscriptions.json').read,
18
17
  headers: {
19
18
  server: 'nginx',
20
19
  date: 'Tue, 05 Mar 2019 15:07:38 GMT',
@@ -48,13 +47,12 @@ class SccAccountSyncTest < ActiveSupport::TestCase
48
47
  .with(
49
48
  headers: {
50
49
  'Accept' => 'application/vnd.scc.suse.com.v4+json',
51
- 'Accept-Encoding' => 'gzip, deflate',
52
50
  'Authorization' => 'Basic b25ldXNlcjpvbmVwYXNz',
53
51
  'Host' => 'scc.example.com'
54
52
  }
55
53
  ).to_return(
56
54
  status: 200,
57
- body: Zlib.gzip(File.read("#{File.dirname(__FILE__)}/data_products_page1.json")),
55
+ body: fixture_file_upload('data_products_page1.json').read,
58
56
  headers: {
59
57
  server: 'nginx',
60
58
  date: 'Mon, 11 Mar 2019 15:37:00 GMT',
@@ -86,13 +84,12 @@ class SccAccountSyncTest < ActiveSupport::TestCase
86
84
  .with(
87
85
  headers: {
88
86
  'Accept' => 'application/vnd.scc.suse.com.v4+json',
89
- 'Accept-Encoding' => 'gzip, deflate',
90
87
  'Authorization' => 'Basic b25ldXNlcjpvbmVwYXNz',
91
88
  'Host' => 'scc.example.com'
92
89
  }
93
90
  ).to_return(
94
91
  status: 200,
95
- body: Zlib.gzip(File.read("#{File.dirname(__FILE__)}/data_products_page2.json")),
92
+ body: fixture_file_upload('data_products_page1.json').read,
96
93
  headers: {
97
94
  server: 'nginx',
98
95
  date: 'Mon, 11 Mar 2019 15:37:19 GMT',
@@ -0,0 +1,502 @@
1
+ [
2
+ {
3
+ "id": 634,
4
+ "url": "https://updates.suse.com/repo/$RCE/SLE10-Debuginfo-Updates/sles-10-ppc/?2GxVS_uuUJOi0Q5ioXaW5cbyAlqo62TM4Aludlc1p1ewCJKm-uY1-FDkkzB3HUYtBmJhI0Xe9pkEvx9vukzvXmiifccBTMApPYnHK2XzJNdSyD-H7cDBSBmYdeF-dX9O9G8_WKZgArqiLBkA",
5
+ "name": "SLE10-Debuginfo-Updates",
6
+ "distro_target": "sles-10-ppc",
7
+ "description": "SLE10-Debuginfo-Updates for sles-10-ppc",
8
+ "enabled": false,
9
+ "autorefresh": true,
10
+ "installer_updates": false
11
+ },
12
+ {
13
+ "id": 635,
14
+ "url": "https://updates.suse.com/repo/$RCE/SLE10-Debuginfo-Updates/sles-10-ia64/?jYOyL1Q633K3TJkHOKt_JdnQI3s9mLhBRiyxhoSdNSpLs3kIoKqDOjw2XBvgy8E95thhdqbNiVCy9Cw2TRwJN2pjX8CeIvtNyUTPucvTY2pTYRQ4uHrLK1prIHf3JvXkNqpKb6A5f8NkAYE3zw",
15
+ "name": "SLE10-Debuginfo-Updates",
16
+ "distro_target": "sles-10-ia64",
17
+ "description": "SLE10-Debuginfo-Updates for sles-10-ia64",
18
+ "enabled": false,
19
+ "autorefresh": true,
20
+ "installer_updates": false
21
+ },
22
+ {
23
+ "id": 638,
24
+ "url": "https://updates.suse.com/repo/$RCE/SLE10-Debuginfo-Updates/sles-10-s390x/?IsG4PjhZ5PxKuK85hL2IWM4xpYA7ChJblga3OqZ6kinOmbTiMjX0K2I9Gz7SD2eHG9KAdQVPB-ZF3sq72iMpTJ6Ma_KKr_RZQ_yyyvFY8sdKdpmpUc12jlyKw8tfp0vP3tCJu56Bdw5ZulsSu2c",
25
+ "name": "SLE10-Debuginfo-Updates",
26
+ "distro_target": "sles-10-s390x",
27
+ "description": "SLE10-Debuginfo-Updates for sles-10-s390x",
28
+ "enabled": false,
29
+ "autorefresh": true,
30
+ "installer_updates": false
31
+ },
32
+ {
33
+ "id": 639,
34
+ "url": "https://updates.suse.com/repo/$RCE/SLES10-SP1-Online/sles-10-i586/?oopg_M76eTSQnNrHWXk5cxxb_sLesHlizPfwe3ZX329C3nqMlGH91RfDu6Tkn3lt0AJFODMep37Nsbt0NTO-Yzo9tXvRMezZisc3uLfQE0dKot6U8wiSHwIZgFIuwuKFzVfzMBdcNA",
35
+ "name": "SLES10-SP1-Online",
36
+ "distro_target": "sles-10-i586",
37
+ "description": "SLES10-SP1-Online for sles-10-i586",
38
+ "enabled": true,
39
+ "autorefresh": true,
40
+ "installer_updates": false
41
+ },
42
+ {
43
+ "id": 641,
44
+ "url": "https://updates.suse.com/repo/$RCE/SLE10-SP1-Debuginfo-Updates/sles-10-i586/?zvcYBVEmQnRAED_s_FdisZltMzE7ifmF4MwYonA_S2_fRSNIVQjSa7VHSnVsQIHlTX4vjrHpoWIG7qyMkxVQMsFB2GnmbA_8NuCq7mJc7XQ7oDcokml47aEPVwKgh4K3uc1z1Rg2SI2Z5eSyvFHa5c8",
45
+ "name": "SLE10-SP1-Debuginfo-Updates",
46
+ "distro_target": "sles-10-i586",
47
+ "description": "SLE10-SP1-Debuginfo-Updates for sles-10-i586",
48
+ "enabled": false,
49
+ "autorefresh": true,
50
+ "installer_updates": false
51
+ },
52
+ {
53
+ "id": 646,
54
+ "url": "https://updates.suse.com/repo/$RCE/SLES10-SP1-Updates/sles-10-i586/?4AoQrFQDlod08aJN4MGhwei7TgeQ37TVwJU5CoIcbbC4YkiBsoC4jzNBuVFj979GwokvUo1CeYW43BouB20NvI_oQC3yIpZMX5FHtbJqYOCqZD7WOIhKeFX16dmtdHOI38_vdT-kgT8",
55
+ "name": "SLES10-SP1-Updates",
56
+ "distro_target": "sles-10-i586",
57
+ "description": "SLES10-SP1-Updates for sles-10-i586",
58
+ "enabled": true,
59
+ "autorefresh": true,
60
+ "installer_updates": false
61
+ },
62
+ {
63
+ "id": 653,
64
+ "url": "https://updates.suse.com/repo/$RCE/SLES10-SP2-Pool/sles-10-i586/?foVILCrPi7teungfhA3EH7Gge2Cvp0xky5KlsJkdJGb9gH4UXs_kfq7RdNl7Z_31Qhz8PBXIZl4130mTD3qiNCszSz0xirQ25OepYeXScIcYttubFTzqp2Ma_7b1amNSwHMMVgM",
65
+ "name": "SLES10-SP2-Pool",
66
+ "distro_target": "sles-10-i586",
67
+ "description": "SLES10-SP2-Pool for sles-10-i586",
68
+ "enabled": true,
69
+ "autorefresh": false,
70
+ "installer_updates": false
71
+ },
72
+ {
73
+ "id": 654,
74
+ "url": "https://updates.suse.com/repo/$RCE/SLES10-SP2-Online/sles-10-i586/?SC4U2S7a2-bwlsIdYP4qlZzf-5K60WvBczwh1-C27JPPF4ajWFlZMGaqAwJGYTrDQgQhzshyhdzkvnTTGFk1K7TEScNlOXBb7zy7bMF14mspN_nD2J62RlTK-BhGQ8DJZbwIXmpJ2Q",
75
+ "name": "SLES10-SP2-Online",
76
+ "distro_target": "sles-10-i586",
77
+ "description": "SLES10-SP2-Online for sles-10-i586",
78
+ "enabled": true,
79
+ "autorefresh": true,
80
+ "installer_updates": false
81
+ },
82
+ {
83
+ "id": 655,
84
+ "url": "https://updates.suse.com/repo/$RCE/SLES10-SP2-Updates/sles-10-i586/?1xSKBv7D9qJpZ1ZJfXDVtc_bSs5cJ2bNi0SdgMKfFW93aUulycVObWyKsIo3WvHVEnBAmdaXRxf0c-D4We32k4jU6AwO_me8pXS9yEdq51P9jjWKuIlOrCk7dl__TGMWRuu-tQDgVqc",
85
+ "name": "SLES10-SP2-Updates",
86
+ "distro_target": "sles-10-i586",
87
+ "description": "SLES10-SP2-Updates for sles-10-i586",
88
+ "enabled": true,
89
+ "autorefresh": true,
90
+ "installer_updates": false
91
+ },
92
+ {
93
+ "id": 656,
94
+ "url": "https://updates.suse.com/repo/$RCE/SLE10-SP2-Debuginfo-Updates/sles-10-i586/?1x-mQMn-IGgHnBsHaGIyzRMm9IpV94S322mJdRx-lg3X1KL1v2Omnc6fo3HY7_uXbKe7rNySSNLgjkWoxbcnm5hdUW0D-GL0ZUI62e9wixxuaM8auCZy-eJn2fJS86avNePprbKF7_UwHAr3xpDUCKM",
95
+ "name": "SLE10-SP2-Debuginfo-Updates",
96
+ "distro_target": "sles-10-i586",
97
+ "description": "SLE10-SP2-Debuginfo-Updates for sles-10-i586",
98
+ "enabled": false,
99
+ "autorefresh": true,
100
+ "installer_updates": false
101
+ },
102
+ {
103
+ "id": 663,
104
+ "url": "https://updates.suse.com/repo/$RCE/SLES10-SP3-Online/sles-10-i586/?x7d0xAv2v8Vts95AHH8ieKb8gRL8dJsb98d8fxoa-G9T4wQclR3cbCMKMV1ABZhhNlaMkNTR5sOusXXM_O693LnxwxOFzg093mU08uYgpaYH7g_qAppnC0ZBI48nweyjnGo21zKIGA",
105
+ "name": "SLES10-SP3-Online",
106
+ "distro_target": "sles-10-i586",
107
+ "description": "SLES10-SP3-Online for sles-10-i586",
108
+ "enabled": true,
109
+ "autorefresh": true,
110
+ "installer_updates": false
111
+ },
112
+ {
113
+ "id": 664,
114
+ "url": "https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-i586/?ftIrhMJx2zwXKFqylmELu9lgEFZSPrgcsdHqcudMbkPBXopoJDqP7eTtUOKClUu1qI2Kt2PqVpJZLK1HznJQJnUCOBOcuLJQ-M0SRWpYHRgznKWuCxCjk6oeeXSWGWdClnVUUIDgl4XQUg83YMaeMRY",
115
+ "name": "SLE10-SP3-Debuginfo-Updates",
116
+ "distro_target": "sles-10-i586",
117
+ "description": "SLE10-SP3-Debuginfo-Updates for sles-10-i586",
118
+ "enabled": false,
119
+ "autorefresh": true,
120
+ "installer_updates": false
121
+ },
122
+ {
123
+ "id": 665,
124
+ "url": "https://updates.suse.com/repo/$RCE/SLES10-GPLv3-Extras/sles-10-i586/?JuwQCjSRo-wljcPHdCGgFqhwKcAJ-2VqasQvUZQEfDIudGKjT3MkD-yUbWiSYoPJbu_PxG1vKAz8d01NQ1FiJLRE36cfkk3LJZVaDp8CWDbg-IH9EJPfORTbWOlD34LOODxyTirkMV_h",
125
+ "name": "SLES10-GPLv3-Extras",
126
+ "distro_target": "sles-10-i586",
127
+ "description": "SLES10-GPLv3-Extras for sles-10-i586",
128
+ "enabled": false,
129
+ "autorefresh": true,
130
+ "installer_updates": false
131
+ },
132
+ {
133
+ "id": 667,
134
+ "url": "https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Online/sles-10-i586/?dX7D6ynr7bPJqJZhdBpKkjRnWXbEh_uUeuPch1VmilVt9RLg_gV39Se9S5ZjXJIxUs2BNDZ-FnDt0TSV78Ja31QE3EETa2PA6zwx6rywsRIuiDG8WJ-g5uFw9_F9NWIcwM7c1kj2jAZNakNC_js0wQ",
135
+ "name": "SLE10-SP3-Debuginfo-Online",
136
+ "distro_target": "sles-10-i586",
137
+ "description": "SLE10-SP3-Debuginfo-Online for sles-10-i586",
138
+ "enabled": false,
139
+ "autorefresh": true,
140
+ "installer_updates": false
141
+ },
142
+ {
143
+ "id": 668,
144
+ "url": "https://updates.suse.com/repo/$RCE/SLES10-SP3-Pool/sles-10-i586/?XxxkCDYWEokOrfhAv8URNhf8RU5d24vNHkmevgvAZtC2Dj7Ob_TFqkQ00b_fywUJPLgAhaT6UySadMlms8drt8r8TqtTZMfqE9oQdw_x-EIwBx7ejxf67yOVKOUXMFPLD4ZIJoM",
145
+ "name": "SLES10-SP3-Pool",
146
+ "distro_target": "sles-10-i586",
147
+ "description": "SLES10-SP3-Pool for sles-10-i586",
148
+ "enabled": true,
149
+ "autorefresh": false,
150
+ "installer_updates": false
151
+ },
152
+ {
153
+ "id": 669,
154
+ "url": "https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-i586/?ahAMDo04kvTFnqasS3sMZI9t0RoWXr3NegOulfqkcuN-d8mt3yMFrAhsxefp416DkKXxLgWGhAkP40Yae2i0DHU5x3TP7tpnAgFTaeWrho7AHSM03dpN_Gn90STOvK9x9LcgyA6ff4co0WNWLlo",
155
+ "name": "SLE10-SP3-Debuginfo-Pool",
156
+ "distro_target": "sles-10-i586",
157
+ "description": "SLE10-SP3-Debuginfo-Pool for sles-10-i586",
158
+ "enabled": false,
159
+ "autorefresh": false,
160
+ "installer_updates": false
161
+ },
162
+ {
163
+ "id": 670,
164
+ "url": "https://updates.suse.com/repo/$RCE/SLES10-SP3-Updates/sles-10-i586/?_5mQUx6CUhpuK4w7YeiKamDOSYOT86t4cjp8sITXhNFDWqfvXOVPaew4UXV5mboDj7wsxAWWo9ndzLhRry4VEhLcYWMIAT-ftY5A5kBT_T3W_QEwxgeqZB1vcc-P13hpEi61JmleF9Y",
165
+ "name": "SLES10-SP3-Updates",
166
+ "distro_target": "sles-10-i586",
167
+ "description": "SLES10-SP3-Updates for sles-10-i586",
168
+ "enabled": true,
169
+ "autorefresh": true,
170
+ "installer_updates": false
171
+ },
172
+ {
173
+ "id": 672,
174
+ "url": "https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Pool/sles-10-s390x/?QLYxGlJtW-WnN9Y5kPTLx1RCFYKTU-XeZCDsYPAD9t3x05sQQsD9g3yySVEshwWRnKs07EepCG7euHOmwGmSDC_UcO84Sq8Bii5uJf8azcr67JpCN_rKX5vmYw6EiuCAmMCOYVO06eU2zlr_htlf",
175
+ "name": "SLE10-SP3-Debuginfo-Pool",
176
+ "distro_target": "sles-10-s390x",
177
+ "description": "SLE10-SP3-Debuginfo-Pool for sles-10-s390x",
178
+ "enabled": false,
179
+ "autorefresh": false,
180
+ "installer_updates": false
181
+ },
182
+ {
183
+ "id": 675,
184
+ "url": "https://updates.suse.com/repo/$RCE/SLE10-SP3-Debuginfo-Updates/sles-10-s390x/?znwlaJ-I4JI9T2UYF6wHA0XP1bFIA7b1VOUKEqXbnlIUo4W1G-W1F2P-lwLDZbRiswWcaZfcK6rfWs-NH-CtiJobyvjy0hvipGyajNIquQ5FBE107ENZocFCFH9OUuQVXtuLD9WOQdqAu9zGwQFwjOB0",
185
+ "name": "SLE10-SP3-Debuginfo-Updates",
186
+ "distro_target": "sles-10-s390x",
187
+ "description": "SLE10-SP3-Debuginfo-Updates for sles-10-s390x",
188
+ "enabled": false,
189
+ "autorefresh": true,
190
+ "installer_updates": false
191
+ },
192
+ {
193
+ "id": 679,
194
+ "url": "https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-i586/?Tw6708ICVM4XaWmg7BrOndvs9Uj6VovRhfg3JZ3DZ-t6t-b0LH-pelWKn_c-9QXDeyYskHQQmFzfVuHRMgtNcCwJ_SifNzMVHVh2tnn40aJwR1P_z6oXbKMC7RLHGjQimy0",
195
+ "name": "SLES11-Extras",
196
+ "distro_target": "sle-11-i586",
197
+ "description": "SLES11-Extras for sle-11-i586",
198
+ "enabled": false,
199
+ "autorefresh": true,
200
+ "installer_updates": false
201
+ },
202
+ {
203
+ "id": 680,
204
+ "url": "https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-i586/?sUSw_l43xM-Zee4XM4S-unUvVW8PPiwkNNbHLo3Hb6ctVG7DCv8R9zsjjl6N93xf-e2JkWouqQIRLFFazmyIx8dSRDXkjuzdQRhUXdXWuNp2zSmEKuDK0cwP01oJTyV3-L2csWvTVRvLGP-mQA",
205
+ "name": "SLE11-SP1-Debuginfo-Pool",
206
+ "distro_target": "sle-11-i586",
207
+ "description": "SLE11-SP1-Debuginfo-Pool for sle-11-i586",
208
+ "enabled": false,
209
+ "autorefresh": true,
210
+ "installer_updates": false
211
+ },
212
+ {
213
+ "id": 681,
214
+ "url": "https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP1-Pool/sle-11-i586/?Pl4l5DfR1K1kXXP_qqV_6yR-lyS0B0j8k4LxEBDA9MpiuDdbxNhiQiEqph5sL-lxWQP1cg4TLVi-6iJIRsBcLqLjx5wFKUeJvwSvp7Aspq9TTql-URrD2HsnZDYQhWms0dkDM8cXSkjp8rQ",
215
+ "name": "SLE11-WebYaST-SP1-Pool",
216
+ "distro_target": "sle-11-i586",
217
+ "description": "SLE11-WebYaST-SP1-Pool for sle-11-i586",
218
+ "enabled": true,
219
+ "autorefresh": true,
220
+ "installer_updates": false
221
+ },
222
+ {
223
+ "id": 682,
224
+ "url": "https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-i586/?ojymMmF8GFdtkh43LTxec1MedikceYtaW9MOhHcBUU6bIQfUkcpBDeP38nFgKsEIk3fyfvnu60TIl1fRoFDBgey1R0vchsDJavEMWQktgBCKq9gLWGBp2gbbe1P4k23_6Vv6caGPO5s8Kdv8Rjd0qA",
225
+ "name": "SLE11-SP1-Debuginfo-Updates",
226
+ "distro_target": "sle-11-i586",
227
+ "description": "SLE11-SP1-Debuginfo-Updates for sle-11-i586",
228
+ "enabled": false,
229
+ "autorefresh": true,
230
+ "installer_updates": false
231
+ },
232
+ {
233
+ "id": 684,
234
+ "url": "https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-i586/?mEr9IidOuaOKRR53koiI2yg3OH8MWH-RDRyzSSsEA65USCmy0ymmtEbBjULfFU0p4P7qa2YdyoJ53jd7Zhc-AoSzYnDJAu20WFPKA7a_ItP2Dn0KK8oOlshyERDYldNQPibtVv5OVg",
235
+ "name": "SLES11-SP1-Updates",
236
+ "distro_target": "sle-11-i586",
237
+ "description": "SLES11-SP1-Updates for sle-11-i586",
238
+ "enabled": false,
239
+ "autorefresh": true,
240
+ "installer_updates": false
241
+ },
242
+ {
243
+ "id": 685,
244
+ "url": "https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP1-Updates/sle-11-i586/?gMcDfn5cdfsmhbcVsQrP0QVA1JympvolvFlqTcpXVTbjnAzf66TKy5nq-hxhwoiVox8ywH0ZDvLM98YLOHaD6XTt62M6Osxi5H1EHNBPbdMka1V2m4S6tFZwFisqkeVXq3ZKP_5iNh_rztnrwEs",
245
+ "name": "SLE11-WebYaST-SP1-Updates",
246
+ "distro_target": "sle-11-i586",
247
+ "description": "SLE11-WebYaST-SP1-Updates for sle-11-i586",
248
+ "enabled": true,
249
+ "autorefresh": true,
250
+ "installer_updates": false
251
+ },
252
+ {
253
+ "id": 686,
254
+ "url": "https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-i586/?RMPic1b1pMjBPJPAU7vYaCH43Hzo1LFQ-5A629SS4lU5PrFMpYF8nzTGjolUGW9qYABn3CoerYxDubVPt_OWii6fopVe38aGCk0N49STYu4qSB0vecIFh5vuAH3DuPVidmcImg",
255
+ "name": "SLES11-SP1-Pool",
256
+ "distro_target": "sle-11-i586",
257
+ "description": "SLES11-SP1-Pool for sle-11-i586",
258
+ "enabled": false,
259
+ "autorefresh": true,
260
+ "installer_updates": false
261
+ },
262
+ {
263
+ "id": 687,
264
+ "url": "https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-s390x/?ITmIcr1l7g90wot3n5-9egvGgu2JiuU_JVMIs5aJ-GNWiZfhXPfL22JRofgrQWZnfABcuOrWuBbdBxwLtts-zyFUwwliyKilWWZygQCD6qCAEgk8kyJC5rYWrOFHevkX05VTo_I",
265
+ "name": "SLES11-SP1-Pool",
266
+ "distro_target": "sle-11-s390x",
267
+ "description": "SLES11-SP1-Pool for sle-11-s390x",
268
+ "enabled": false,
269
+ "autorefresh": true,
270
+ "installer_updates": false
271
+ },
272
+ {
273
+ "id": 688,
274
+ "url": "https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-s390x/?Nipg2SeWtnPvOb6nOrIyyXOuMfcfwU0RwZhteHx1eD_I0FPrpkI1A_Fa1LL8Y4D3NERSPUyiLa_lnycyHEmmiFePtkQsmDvEjrhubnickl1ZSK8bsC4kQfOQO7TZFwBZjyDbksiGTFbJ_gmr5y9a-Cg",
275
+ "name": "SLE11-SP1-Debuginfo-Updates",
276
+ "distro_target": "sle-11-s390x",
277
+ "description": "SLE11-SP1-Debuginfo-Updates for sle-11-s390x",
278
+ "enabled": false,
279
+ "autorefresh": true,
280
+ "installer_updates": false
281
+ },
282
+ {
283
+ "id": 690,
284
+ "url": "https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP1-Updates/sle-11-s390x/?5Bb2ilzaMNQByD0Wfp78zc5YPVXxz6bWJkJ27qnseZyo1aL9sOR4Mrr44KF0_UZS0zdL8CbAO7-Uo9dX1NYLTAvtoOLbNw9EM_VbuU3P4UA9D770MqI1DolJmyu5xQdGYV1w2dy71KWOgbLUk5Ba",
285
+ "name": "SLE11-WebYaST-SP1-Updates",
286
+ "distro_target": "sle-11-s390x",
287
+ "description": "SLE11-WebYaST-SP1-Updates for sle-11-s390x",
288
+ "enabled": true,
289
+ "autorefresh": true,
290
+ "installer_updates": false
291
+ },
292
+ {
293
+ "id": 691,
294
+ "url": "https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-s390x/?yVQYlvommkinYcYNnOa4JU8JtBWEwHowwbkqmjj78mQc3W43hcOPG4IzjFMlKM19PLXX-HUxcXIscTRxovLMB7qzJYeQBECtKGQi4jreyuK1DjdvX9OjPrqUG-XeF20uzOHYOLSkmzA",
295
+ "name": "SLES11-SP1-Updates",
296
+ "distro_target": "sle-11-s390x",
297
+ "description": "SLES11-SP1-Updates for sle-11-s390x",
298
+ "enabled": false,
299
+ "autorefresh": true,
300
+ "installer_updates": false
301
+ },
302
+ {
303
+ "id": 692,
304
+ "url": "https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-s390x/?q7D1XkyXV2Zgb5AEaLd-SdN4dnDv3TRiHX2UY-N-RSyhqIyzIJ9WsrsGCCEk1fISg2qkvWEK86iTtQSwlZuHeNR5_n1XyQ2XCyPRNhPtKFhU6gUKjD0yHtKyfmC_2sksDbRjvkehFGDjtdWxcR8",
305
+ "name": "SLE11-SP1-Debuginfo-Pool",
306
+ "distro_target": "sle-11-s390x",
307
+ "description": "SLE11-SP1-Debuginfo-Pool for sle-11-s390x",
308
+ "enabled": false,
309
+ "autorefresh": true,
310
+ "installer_updates": false
311
+ },
312
+ {
313
+ "id": 693,
314
+ "url": "https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP1-Pool/sle-11-s390x/?vkQrOkPp_EbPVKI61Td5Mow-ZIXDgSVuWiRXMw2BW-xN_gXIOSoWQdHGMInFho60dSg0kta49nSMK8GOyKYN2_kbbYP33ZiF5W01VfZ4yHMI7aeNIf_U0wy1bd-9wApwmeAYdIK_S8WNRiGf",
315
+ "name": "SLE11-WebYaST-SP1-Pool",
316
+ "distro_target": "sle-11-s390x",
317
+ "description": "SLE11-WebYaST-SP1-Pool for sle-11-s390x",
318
+ "enabled": true,
319
+ "autorefresh": true,
320
+ "installer_updates": false
321
+ },
322
+ {
323
+ "id": 694,
324
+ "url": "https://updates.suse.com/repo/$RCE/SLES10-SP4-Online/sles-10-i586/?PJyXNRxBG9KMqcAG44kPW0MDmmb-8c_Ee8gU54_Qe75ZKQNySqAhQXqrekj69l7GFKqt4cpGJYrGSMw26tnDm77SUvEvZfEitxUcEnMupoTQCIuBNyDNaZ6rrgWtpsEjuYlnINo6dQ",
325
+ "name": "SLES10-SP4-Online",
326
+ "distro_target": "sles-10-i586",
327
+ "description": "SLES10-SP4-Online for sles-10-i586",
328
+ "enabled": true,
329
+ "autorefresh": true,
330
+ "installer_updates": false
331
+ },
332
+ {
333
+ "id": 695,
334
+ "url": "https://updates.suse.com/repo/$RCE/SLES10-SP4-Pool/sles-10-i586/?jO2ei9Qlwd7eSI3HQyaGUGMAQAIiOyFMq3-roPlm1BRBbCjGXTuz-WP5NT25oBn3_eZtf5-r4f_3q8_LhAwxVB81N9-If1Qtkwl9il_sXur53lXMpWwC5NyfjUja62URr75jTIA",
335
+ "name": "SLES10-SP4-Pool",
336
+ "distro_target": "sles-10-i586",
337
+ "description": "SLES10-SP4-Pool for sles-10-i586",
338
+ "enabled": true,
339
+ "autorefresh": false,
340
+ "installer_updates": false
341
+ },
342
+ {
343
+ "id": 696,
344
+ "url": "https://updates.suse.com/repo/$RCE/SLE10-SP4-Debuginfo-Updates/sles-10-i586/?T_ROIBZgwgxyKeY3oZq-u9MkqizINM_sUmmrFTAYmo8Sfzq-CctzmuF4FMxMK9n7K62rGQxJ0s4gqAuFZ53mijbz_5BKuudKSMkFWk-3XEvvVDwOWxmSwh72zU_DoBv6BpTiZtCL0QR8gZ2FxkXYz8A",
345
+ "name": "SLE10-SP4-Debuginfo-Updates",
346
+ "distro_target": "sles-10-i586",
347
+ "description": "SLE10-SP4-Debuginfo-Updates for sles-10-i586",
348
+ "enabled": false,
349
+ "autorefresh": true,
350
+ "installer_updates": false
351
+ },
352
+ {
353
+ "id": 698,
354
+ "url": "https://updates.suse.com/repo/$RCE/SLE10-SP4-Debuginfo-Pool/sles-10-i586/?3e9qgrdy9HiqsRslsD_4pD4KsyWL0fOUkgOpC4XgU2iN2SrimAdpGhNjEmfIBwI4H7xTyf8pO7BvUOS9aRo3-UD5tm6GvqWdbfOZgzjhnl6a1-ZLdq7QSQIikyEfTuWJNZ2aJjHks0Us7Q8Lsco",
355
+ "name": "SLE10-SP4-Debuginfo-Pool",
356
+ "distro_target": "sles-10-i586",
357
+ "description": "SLE10-SP4-Debuginfo-Pool for sles-10-i586",
358
+ "enabled": false,
359
+ "autorefresh": false,
360
+ "installer_updates": false
361
+ },
362
+ {
363
+ "id": 699,
364
+ "url": "https://updates.suse.com/repo/$RCE/SLES10-SP4-Updates/sles-10-i586/?k0yErKWtS2UFAqUTCKn6IcbBO0JSmHDcMUgVNonnaASdgyihwWBGySR5EQbOcETFUfVL4CwJD_3rPxN8CYtup4dfMGU1jv4sySoQL81v1gMUzFMLvpdPMv1IoT6uQ5ay72WKBcAUge4",
365
+ "name": "SLES10-SP4-Updates",
366
+ "distro_target": "sles-10-i586",
367
+ "description": "SLES10-SP4-Updates for sles-10-i586",
368
+ "enabled": true,
369
+ "autorefresh": true,
370
+ "installer_updates": false
371
+ },
372
+ {
373
+ "id": 705,
374
+ "url": "https://updates.suse.com/repo/$RCE/SLES11-SP1-Updates/sle-11-x86_64/?mU-9hfMoiB6j7au6xg4QhbCrEo5GsOso08K3AGVO4zbQwzqWR4-X73vgtvztjcCvokJmWIirRme9awn7QJ0ZbMLKeGju_c_tmZzghbgVILAT8Fo40-T9_WU70gWV3BzLNRfqtKHWP6NJ",
375
+ "name": "SLES11-SP1-Updates",
376
+ "distro_target": "sle-11-x86_64",
377
+ "description": "SLES11-SP1-Updates for sle-11-x86_64",
378
+ "enabled": false,
379
+ "autorefresh": true,
380
+ "installer_updates": false
381
+ },
382
+ {
383
+ "id": 706,
384
+ "url": "https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP2-Pool/sle-11-x86_64/?3xy2ogHlAAAAAAAA-ZKhq7_4jYavLwvNq32a426eppkUeqGRru_NmvRR7S5em44De7S2kVvJDU-rADKoJYbHAq_Mz8mWt91nMqBVO23A7wi2Bx8SsTU-IPo2JUX8TikNU7IXNbCu3wydkuOJwA",
385
+ "name": "SLE11-WebYaST-SP2-Pool",
386
+ "distro_target": "sle-11-x86_64",
387
+ "description": "SLE11-WebYaST-SP2-Pool for sle-11-x86_64",
388
+ "enabled": true,
389
+ "autorefresh": true,
390
+ "installer_updates": false
391
+ },
392
+ {
393
+ "id": 707,
394
+ "url": "https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Pool/sle-11-x86_64/?yAufhA2TjKwovxdtZXAoARQOgaaYaRvBYuWlewhITc36bvKUv_RrUBKEEMZ0i15zEYPw5VpQ8s0BsjKAfgMTVUtgdo3QL9DsSxorki7secgra0Fed2fKEKO6T-gi8pWa8hDSh4CqkRLG7XoczEN0",
395
+ "name": "SLE11-SP1-Debuginfo-Pool",
396
+ "distro_target": "sle-11-x86_64",
397
+ "description": "SLE11-SP1-Debuginfo-Pool for sle-11-x86_64",
398
+ "enabled": false,
399
+ "autorefresh": true,
400
+ "installer_updates": false
401
+ },
402
+ {
403
+ "id": 708,
404
+ "url": "https://updates.suse.com/repo/$RCE/SLE11-WebYaST-SP2-Updates/sle-11-x86_64/?43gP17s6Ix1O3XvMmxF2hkA7LRnG4z08KRd6j2xpG4rsNAfcAwfi2u9b6OfAvxnZ5PpWvc9QULngDuIJpN2mwTblc1F-xjkMxRc6eE-ZTlYgGuCaOyEs-wEkMafjA08NFNO6td9HlDVcNzk5U5kgGA",
405
+ "name": "SLE11-WebYaST-SP2-Updates",
406
+ "distro_target": "sle-11-x86_64",
407
+ "description": "SLE11-WebYaST-SP2-Updates for sle-11-x86_64",
408
+ "enabled": true,
409
+ "autorefresh": true,
410
+ "installer_updates": false
411
+ },
412
+ {
413
+ "id": 709,
414
+ "url": "https://updates.suse.com/repo/$RCE/SLES11-SP2-Core/sle-11-x86_64/?dF48Nq-BbKczYJ_fUuvYPHGb_Q3ZCwV5NEi0g159z8xsRjs0H3F8Yz32AsFlNhA-z5CY-EYUVh5FMGtPJMzp-pcLgHXZwc-BdETQCSW3Yu6uiJXiVobJ26AGuncxGyjqhaN7_rne",
415
+ "name": "SLES11-SP2-Core",
416
+ "distro_target": "sle-11-x86_64",
417
+ "description": "SLES11-SP2-Core for sle-11-x86_64",
418
+ "enabled": false,
419
+ "autorefresh": true,
420
+ "installer_updates": false
421
+ },
422
+ {
423
+ "id": 710,
424
+ "url": "https://updates.suse.com/repo/$RCE/SLES11-Extras/sle-11-x86_64/?XoPsNKi7BFSqPRBnsy3ZrLNpvlSP8g-MFfDO9WLVu2PUX-gdGkMlRDKtpYbAce4CGMwd6rmNjCjoU5l7lfxRumbIUYmm0bM_av6f152SQN-MluAl3NfgJT9cRVF10XxURYXbEg",
425
+ "name": "SLES11-Extras",
426
+ "distro_target": "sle-11-x86_64",
427
+ "description": "SLES11-Extras for sle-11-x86_64",
428
+ "enabled": false,
429
+ "autorefresh": true,
430
+ "installer_updates": false
431
+ },
432
+ {
433
+ "id": 711,
434
+ "url": "https://updates.suse.com/repo/$RCE/SLES11-SP1-Pool/sle-11-x86_64/?ZrlDuUWZmFZNEMi_6SkFGgGc8o0V-oGPn55rcK76idefZcLv0eWQtUKRjhlQcLTwVsPdfMhnEhFcjry84qbkUpGA_He7qrGlPctKhae6eUbKYp2iV6P-7W7tOYOSjWXw57kVqipa",
435
+ "name": "SLES11-SP1-Pool",
436
+ "distro_target": "sle-11-x86_64",
437
+ "description": "SLES11-SP1-Pool for sle-11-x86_64",
438
+ "enabled": false,
439
+ "autorefresh": true,
440
+ "installer_updates": false
441
+ },
442
+ {
443
+ "id": 712,
444
+ "url": "https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Updates/sle-11-x86_64/?pcvHPHsNMOdKyzoAzpPN5sJ6hBDUEkMAyd__WVoHoKe3PLCbT6WH4CG4D2YBkvceiGfqH7qY5aqiyYWps92fHgwvYLUk6oS-Q47jwPdv_qHE-OFJPcC4L5fkWsacir9lk25imd_fiFGTyZiznaJTjqQl",
445
+ "name": "SLE11-SP2-Debuginfo-Updates",
446
+ "distro_target": "sle-11-x86_64",
447
+ "description": "SLE11-SP2-Debuginfo-Updates for sle-11-x86_64",
448
+ "enabled": false,
449
+ "autorefresh": true,
450
+ "installer_updates": false
451
+ },
452
+ {
453
+ "id": 713,
454
+ "url": "https://updates.suse.com/repo/$RCE/SLES11-SP2-Extension-Store/sle-11-x86_64/?BmKgVuHknySSRO-pefVcuyiO3x-BgKVIYLwJy24FJtyvGvfZntePXHX6Kv62iHrlrz7y4MUEmR-CRgnm0hxD1aKELsYK3HYjxWMa6mPNnDVWyO7qf-1q2rlxb4OyMaNB4GvE_6aoTKC_lbchOX5__eQ",
455
+ "name": "SLES11-SP2-Extension-Store",
456
+ "distro_target": "sle-11-x86_64",
457
+ "description": "SLES11-SP2-Extension-Store for sle-11-x86_64",
458
+ "enabled": false,
459
+ "autorefresh": true,
460
+ "installer_updates": false
461
+ },
462
+ {
463
+ "id": 714,
464
+ "url": "https://updates.suse.com/repo/$RCE/SLES11-SP2-Updates/sle-11-x86_64/?Vt4hG19t1P9EFCX0oPxIirJLSCL2bLmGBghjn_6G4IoT2imhMb6Di1ZwKCDuN5NvF8TdXeZfyzssYpda4V6sXXr43PkImum09biR3pOBcfFb3FbocXa9D6I9Rw_Pqg0SkdY_0wrWUIl9",
465
+ "name": "SLES11-SP2-Updates",
466
+ "distro_target": "sle-11-x86_64",
467
+ "description": "SLES11-SP2-Updates for sle-11-x86_64",
468
+ "enabled": false,
469
+ "autorefresh": true,
470
+ "installer_updates": false
471
+ },
472
+ {
473
+ "id": 715,
474
+ "url": "https://updates.suse.com/repo/$RCE/SLE11-SP1-Debuginfo-Updates/sle-11-x86_64/?V8RgHT9c0qyDE8-q8pdhrBfB-5pyW9WT7U_fH2F5Vheh9iztl61nch2ujLxGHSyZQpx46qNZDKN_PGdfUep1NC7kWBe3BFTsThcGCDJ9IM2I2G3XLs3FaHCCmKBkhBAp52I0Nh2XpsgsEJQUsk4hdCB_",
475
+ "name": "SLE11-SP1-Debuginfo-Updates",
476
+ "distro_target": "sle-11-x86_64",
477
+ "description": "SLE11-SP1-Debuginfo-Updates for sle-11-x86_64",
478
+ "enabled": false,
479
+ "autorefresh": true,
480
+ "installer_updates": false
481
+ },
482
+ {
483
+ "id": 716,
484
+ "url": "https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-x86_64/?k_VeQyn9COivSRS8ol7d1FwLv8urpGtyXCGEgyRJxV4glpLai4t5BhCY52MuMp3B8rPl1kw9tyt8660cUZIEcXOh7fq2XuHZkeynbjAxnKcP7XwScJwu-q5rZTvKx4mr_b6XMsrTGaVr1OTEIEYX",
485
+ "name": "SLE11-SP2-Debuginfo-Core",
486
+ "distro_target": "sle-11-x86_64",
487
+ "description": "SLE11-SP2-Debuginfo-Core for sle-11-x86_64",
488
+ "enabled": false,
489
+ "autorefresh": true,
490
+ "installer_updates": false
491
+ },
492
+ {
493
+ "id": 717,
494
+ "url": "https://updates.suse.com/repo/$RCE/SLE11-SP2-Debuginfo-Core/sle-11-i586/?Gh9lPJq1OmlBnZKZoczbeu0berbKSmaHv9bTIvK9bVk4i9eIQqGe5VMC4HRNkbRMu2nnVRNOwpJ4Vwds_8KQ4-zspmvf1Rc4klH9RcGPI7B5HKQ6R09-a-w7IeLOtYblnWezewKiWjUB8SF7bQ",
495
+ "name": "SLE11-SP2-Debuginfo-Core",
496
+ "distro_target": "sle-11-i586",
497
+ "description": "SLE11-SP2-Debuginfo-Core for sle-11-i586",
498
+ "enabled": false,
499
+ "autorefresh": true,
500
+ "installer_updates": false
501
+ }
502
+ ]