Revision 0467b6cd snf-cyclades-app/synnefo/ui/new_ui/ui/javascripts/okeanos-ember/obj.js

b/snf-cyclades-app/synnefo/ui/new_ui/ui/javascripts/okeanos-ember/obj.js
1 1
/* Objects */
2 2

  
3
/*
4
to do: config = new Ember.object();
5
*/
6

  
7

  
3 8
Ember.Inflector.inflector.uncountable('account');
4 9

  
5 10
Synnefo.Account = DS.Model.extend({
6
	email: DS.attr('string')
11
  email: DS.attr('string'),
12
	uuid: DS.attr('string')
7 13
});
8 14

  
9 15
// CHECK can i use a single obj and not an array of obj
10
Synnefo.Account.FIXTURES = {
11
	id: 001,
12
	email: "athina@mail.com"
13
};
16
Synnefo.Account.FIXTURES = [{
17
  id: 001,
18
	email: "athina@mail.com",
19
  uuid: '7bba5b8d-8bac-495f-be44-9da88c8ef41a'
20
}];
14 21

  
15 22

  
16 23

  
17 24
Synnefo.Vm = DS.Model.extend({
18
	// id: DS.attr('number'), 	we do not define it ;)
25
	// id: DS.attr('number'),	we do not define it
19 26
	name: DS.attr('string'),
20 27
	hostname: DS.attr('string'),
21 28
	status: DS.attr('string'),
......
90 97
  status: 'building'
91 98
}];
92 99

  
100
// included some properties of the received json
101
Synnefo.Image = DS.Model.extend({
102
  name: DS.attr(),
103
  status: DS.attr(),
104
  disk_format: DS.attr(),
105
  size: DS.attr('number'),
106
  created_at: DS.attr(),// should be date
107
  updated_at: DS.attr(),// should be date
108
  deleted_at: DS.attr(),// should be date
109
  is_public: DS.attr('boolean'),
110
  sortorder: DS.attr('number'),
111
  properties: DS.attr('raw')
112
  /*
113
    properties include:
114
    partition_table
115
    kernel
116
    osfamily
117
    users // maybe more than one
118
    gui
119
    sortorder
120
    os
121
    root_partition
122
    description
123
  */
124
});
125

  
93 126

  
127
//  Synnefo.UserImage should be subset of Synnefo.Image
94 128
Synnefo.UserImage = DS.Model.extend({
95 129
  name: DS.attr('string'),
96 130
  status: DS.attr('string'),
......
111 145

  
112 146
Synnefo.conf = {
113 147
  sectors: [{
114
  	destination: "vms",
115
  	title: "Virtual Machines",
116
  	icon: "snf-pc-outline"
148
    destination: "vms",
149
    title: "Virtual Machines",
150
    icon: "snf-pc-outline"
117 151
  },
118 152
  {
119 153
    destination: "networks",
120 154
    title: "Network",
121
  	icon: "snf-network-outline"
155
    icon: "snf-network-outline"
122 156

  
123 157
  },
124 158
  {
125
  	destination: "volumes",
126
  	title: "Volumes",
127
  	icon: "snf-volume-outline"
159
    destination: "volumes",
160
    title: "Volumes",
161
    icon: "snf-volume-outline"
128 162
  },
129 163
  {
130
  	destination: "pithos",
131
  	title: "Pithos",
132
  	icon: "snf-pithos-outline"
164
    destination: "pithos",
165
    title: "Pithos",
166
    icon: "snf-pithos-outline"
133 167
  },
134 168
  {
135
  	destination: "images",
136
  	title: "Images",
137
  	icon: "snf-image-outline"
169
    destination: "images",
170
    title: "Images",
171
    icon: "snf-image-outline"
138 172
  },
139 173
  {
140
  	destination: "snapshots",
141
  	title: "Snapshots",
142
  	icon: "snf-snapshot-outline"
174
    destination: "snapshots",
175
    title: "Snapshots",
176
    icon: "snf-snapshot-outline"
143 177
  },
144 178
  {
145
  	destination: "ips",
146
  	title: "IPs",
147
  	icon: "snf-nic-outline"
179
    destination: "ips",
180
    title: "IPs",
181
    icon: "snf-nic-outline"
148 182
  },
149 183
  {
150
  	destination: "sshkeys",
151
  	title: "SSh Keys",
152
  	icon: "snf-key-outline"
184
    destination: "sshkeys",
185
    title: "SSh Keys",
186
    icon: "snf-key-outline"
153 187
  }],
154 188

  
155 189
  userActions: [{
......
160 194
  },
161 195
  {
162 196
    description:'destroyElement',
163
    'snf-components': ['vms', 'networks'],
197
    'snf-components': ['vms','networks'],
164 198
    'enabled-status': ['all'],
165 199
    action: 'is this a function?',
166 200
  },
......
178 212
  },
179 213
  {
180 214
    description:'action for all',
181
    'snf-components': ['vms', 'networks'],
215
    'snf-components': ['vms','networks'],
182 216
    'enabled-status': ['all'],
183 217
    action: 'is this a function?'
184 218
}]
185 219
};
186 220

  
187 221
Synnefo.wizards = {
188
  vmWizard: {
222
  vmWizard: Ember.Object.create({
189 223
    // each step must have a headline
190 224
    stepsHeadlines: [
191 225
        {
......
193 227
          subtitle:'Choose your preferred image'
194 228
        },
195 229
        {
196
          title:'Select CPUs, RAM and Disk Size',
230
          title:'Select CPUs,RAM and Disk Size',
197 231
          subtitle:'Available options are filtered based on the selected image'
198 232
        },
199 233
        {
......
207 241
    ],
208 242
    stepsSubmenus: [
209 243
      {
210
        options:['System', 'My images', 'Shared with me', 'Public']
244
        options:['System','My images','Shared with me','Public',] // could the snapshots be part of this list?
211 245
      },
212 246
      {
213
        options: ['Small', 'Medium', 'large']
247
        options: ['Small','Medium','large']
214 248
      }
215 249
    ],
216
    stepsContent: ['step-1', 'step-2', 'step-3', 'step-4']
217
  },
250
    stepsContent: ['step-1','step-2','step-3','step-4']
251
  }),
218 252
  networkWizard: {}
219
}
253
};
254

  
255

  
256
Synnefo.SystemUUIDs = ['25ecced9-bf53-4145-91ee-cf47377e9fb2','temp-system-id'];
257

  
258
// accounts that have published an image or they have shared it with the current user
259
Synnefo.AccountsUUIDs = Ember.Object.create({
260
"1dc6f624-cf11-473a-8a18-ed9171e47023": "p11mour@ionio.gr",
261
"4b6c2887-0a14-4a4b-bfaf-d665ca70dff8": "cargious@gmail.com",
262
"7c1adab8-7b7f-4b27-9f5d-423629ecc05d": "occi-test@grnet.gr",
263
"7e271a0b-1427-45ec-9916-f8e72bfbf3d4": "joko@microlab.ntua.gr",
264
"8ce17bf9-5b1d-425a-adb0-d415e29df1d3": "markeleas@gmail.com",
265
"9ac455ec-21aa-427d-8c11-2b34faa8e006": "mte1115@webmail.unipi.gr",
266
"23f92921-cef9-4aca-b74d-448628380949": "czalidis@auth.gr",
267
"25ecced9-bf53-4145-91ee-cf47377e9fb2": "images@okeanos.grnet.gr",
268
"41a38154-55fb-48ca-a8ad-5652265dc7da": "xrg@hellug.gr",
269
"66a0f15a-69ce-4a18-8177-2343da55c2e1": "alexakis@imis.athena-innovation.gr",
270
"82a704cd-8874-4302-ae16-7c7221bdfb57": "dimiarme2@tesyd.teimes.gr",
271
"309cf993-79be-4aed-b335-9f98ff79800d": "pplatis1@teilam.gr",
272
"472ca914-0a88-4bc8-ab5e-72d49e5d51eb": "panagiotious@gmail.com",
273
"607bc20e-ae01-46ca-8a7d-d37b92e9908f": "vergoulis@imis.athena-innovation.gr",
274
"00759b1d-a20e-439a-99ad-f11a91ba68e6": "stmoros@gmail.com",
275
"70083b2f-afa0-4514-b98b-5fd754de59b9": "el08092@central.ntua.gr",
276
"51819571-6e2e-429e-8ffe-0f1999acbc1c": "cmantas@cslab.ece.ntua.gr",
277
"a3ff8143-4586-4910-aeb3-6e68f3d32c13": "kkoum@admin.grnet.gr",
278
"a504f156-7660-4793-a23f-ea0bbee748e9": "knikas@cslab.ece.ntua.gr",
279
"ae458ae3-b92e-479f-8aa4-8c3e257c902a": "frozenarena@gmail.com",
280
"c3eb14d6-ed97-4b00-8b68-7ccecad73f37": "stefmal@unipi.gr",
281
"c996c4e2-28dc-4d8a-a8e7-bfc6830cb1f6": "ok0-burnin@okeanos.grnet.gr",
282
"d4a583cb-444e-4bb7-a588-fa1134c23efc": "ggian@cslab.ntua.gr",
283
"d098aa00-f56c-4cc0-8abe-7ed5b9a4bf2a": "cse36860@stef.teipir.gr",
284
"ddbaf544-9874-4007-833e-0547bd8c6bf1": "ar07065@central.ntua.gr",
285
"e472fd72-4ec8-428f-a9f1-8ce9f768de09": "imoustakas@teleinfom.teiep.gr",
286
"f782c65e-b9e7-47fc-8ed0-6cc11e7658e8": "efloros@grnet.gr",
287
"f1380d5a-7d53-427a-a255-5fdd50c8c983": "antonismanousis@gmail.com",
288
"fac4a96c-1fed-4f93-92f6-5b4b268f9351": "ge03163@mail.ntua.gr"
289
});
290

  
291

  
292

  
293
Synnefo.Image.FIXTURES =
294
[
295
{
296
"status": "available",
297
"name": "CentOS",
298
"checksum": "1cd682b9b56a4e13e41fc6626474b8e038036808dfe1ec862c642d4362658ef0",
299
"created_at": "2014-02-24 15:59:15",
300
"disk_format": "diskdump",
301
"updated_at": "2014-02-24 15:59:15",
302
"properties": {
303
"partition_table": "msdos",
304
"kernel": "2.6.32",
305
"osfamily": "linux",
306
"users": "root",
307
"gui": "No GUI",
308
"sortorder": "6",
309
"os": "centos",
310
"root_partition": "1",
311
"description": "CentOS release 6.5 (Final)"
312
},
313
"location": "pithos://25ecced9-bf53-4145-91ee-cf47377e9fb2/images/centos-6.x-14-x86_64.diskdump",
314
"container_format": "bare",
315
"owner": "25ecced9-bf53-4145-91ee-cf47377e9fb2",
316
"is_public": true,
317
"deleted_at": "",
318
"id": "bace133d-4d1f-40aa-a495-1a1d7d5c1726",
319
"size": 709644288
320
},
321
{
322
"status": "available",
323
"name": "FreeBSD",
324
"checksum": "ab99fcf5ab7c9903ff3b8d3ea134b356aebd54bc07aa25c81b12850e81071930",
325
"created_at": "2014-02-24 13:07:12",
326
"disk_format": "diskdump",
327
"updated_at": "2014-02-24 13:07:12",
328
"properties": {
329
"partition_table": "gpt",
330
"kernel": "FreeBSD 9.2-RELEASE",
331
"osfamily": "freebsd",
332
"users": "root",
333
"gui": "No GUI",
334
"sortorder": "10",
335
"os": "freebsd",
336
"root_partition": "2",
337
"description": "FreeBSD 9.2-RELEASE (GENERIC)"
338
},
339
"location": "pithos://25ecced9-bf53-4145-91ee-cf47377e9fb2/images/freebsd-9.2-2-x86_64.diskdump",
340
"container_format": "bare",
341
"owner": "25ecced9-bf53-4145-91ee-cf47377e9fb2",
342
"is_public": true,
343
"deleted_at": "",
344
"id": "2da09920-20c1-4f48-ac04-e5e18029ca0c",
345
"size": 1610612736
346
},
347
{
348
"status": "available",
349
"name": "OpenSUSE",
350
"checksum": "542597ba73388ddcc5752437e810a1b9b1a82912f063a70ab1ec0e757be55118",
351
"created_at": "2014-02-24 13:04:58",
352
"disk_format": "diskdump",
353
"updated_at": "2014-02-24 13:04:58",
354
"properties": {
355
"partition_table": "msdos",
356
"osfamily": "linux",
357
"users": "root user",
358
"gui": "KDE 4",
359
"sortorder": "9",
360
"os": "opensuse",
361
"root_partition": "1",
362
"description": "openSUSE 13.1 (x86_64)"
363
},
364
"location": "pithos://25ecced9-bf53-4145-91ee-cf47377e9fb2/images/opensuse_desktop-13.1-3-x86_64.diskdump",
365
"container_format": "bare",
366
"owner": "25ecced9-bf53-4145-91ee-cf47377e9fb2",
367
"is_public": true,
368
"deleted_at": "",
369
"id": "e1be6e12-2e18-4417-a49d-0e0bc189c141",
370
"size": 5204701184
371
},
372
{
373
"status": "available",
374
"name": "cassandra_deb_v3.3",
375
"checksum": "6d799ff55063bbc0b5a034340c461d06a25f639cbda30efc3314a2bc97309c72",
376
"created_at": "2014-02-24 11:58:01",
377
"disk_format": "diskdump",
378
"updated_at": "2014-02-24 11:58:01",
379
"properties": {
380
"partition_table": "msdos",
381
"osfamily": "linux",
382
"users": "root",
383
"exclude_task_deletesshkeys": "yes",
384
"exclude_task_addswap": "yes",
385
"os": "debian",
386
"root_partition": "1",
387
"description": "wheezy + java-1.7,cassandra-2.0,ycsb(+sin),ganglia"
388
},
389
"location": "pithos://51819571-6e2e-429e-8ffe-0f1999acbc1c/images/cassandra_base_v3.3.diskdump",
390
"container_format": "bare",
391
"owner": "51819571-6e2e-429e-8ffe-0f1999acbc1c",
392
"is_public": true,
393
"deleted_at": "",
394
"id": "4a9134b9-5e7b-471c-83dc-a091e11cd090",
395
"size": 1391607808
396
},
397
{
398
"status": "available",
399
"name": "Windows Server 2008R2",
400
"checksum": "07e8fdc61b5142beb40d22a420f80dcf839f5f4b9ddaa3ebd0c9ff6062fb6a30",
401
"created_at": "2014-02-18 08:25:56",
402
"disk_format": "diskdump",
403
"updated_at": "2014-02-18 08:25:56",
404
"properties": {
405
"partition_table": "msdos",
406
"kernel": "Windows NT Kernel",
407
"osfamily": "windows",
408
"users": "Administrator",
409
"gui": "Windows,Aero Theme",
410
"sortorder": "7",
411
"os": "windows",
412
"root_partition": "2",
413
"description": "Windows Server 2008 R2 Datacenter"
414
},
415
"location": "pithos://25ecced9-bf53-4145-91ee-cf47377e9fb2/images/windows-2008R2-16-x86_64.diskdump",
416
"container_format": "bare",
417
"owner": "25ecced9-bf53-4145-91ee-cf47377e9fb2",
418
"is_public": true,
419
"deleted_at": "",
420
"id": "e394efad-11cd-414b-a76d-6dcf245da919",
421
"size": 15439233024
422
},
423
{
424
"status": "available",
425
"name": "cassandra_deb_v3.2",
426
"checksum": "10303f9b358bd4c530196a3d86d049e1ca256ec736368ce73df32988073e723d",
427
"created_at": "2014-02-17 12:34:25",
428
"disk_format": "diskdump",
429
"updated_at": "2014-02-17 12:34:25",
430
"properties": {
431
"partition_table": "msdos",
432
"osfamily": "linux",
433
"description": "wheezy (7.3) + oracle java1.7,cassandra2.0,ycsb,ganglia,c-tool",
434
"os": "debian",
435
"root_partition": "1",
436
"users": "root"
437
},
438
"location": "pithos://51819571-6e2e-429e-8ffe-0f1999acbc1c/images/cassandra_deb_v3.2-201402171425.diskdump",
439
"container_format": "bare",
440
"owner": "51819571-6e2e-429e-8ffe-0f1999acbc1c",
441
"is_public": true,
442
"deleted_at": "",
443
"id": "440d9ca1-9132-4880-b96f-c7ebed5f3150",
444
"size": 1654947840
445
},
446
{
447
"status": "available",
448
"name": "Fedora",
449
"checksum": "ca37b5f75e4e2082ba3e7dff85645fe20d19606b44f8d0af630f81563a1c89be",
450
"created_at": "2014-02-13 11:03:54",
451
"disk_format": "diskdump",
452
"updated_at": "2014-02-13 11:03:54",
453
"properties": {
454
"partition_table": "msdos",
455
"kernel": "3.12.10",
456
"osfamily": "linux",
457
"users": "root user",
458
"gui": "MATE Desktop Environment 1.6.2",
459
"sortorder": "5",
460
"os": "fedora",
461
"root_partition": "2",
462
"description": "Fedora release 20 (Heisenbug)"
463
},
464
"location": "pithos://25ecced9-bf53-4145-91ee-cf47377e9fb2/images/fedora-20-2-x86_64.diskdump",
465
"container_format": "bare",
466
"owner": "25ecced9-bf53-4145-91ee-cf47377e9fb2",
467
"is_public": true,
468
"deleted_at": "",
469
"id": "04fa9ca6-7417-41a7-a20c-23a416b2b55c",
470
"size": 3522433024
471
},
472
{
473
"status": "available",
474
"name": "Debian Desktop",
475
"checksum": "e18d7ab60f4969e33bff3df22c8ee3cb4db95121744280efe6619c4de4462d13",
476
"created_at": "2014-02-10 17:39:46",
477
"disk_format": "diskdump",
478
"updated_at": "2014-02-10 17:39:46",
479
"properties": {
480
"partition_table": "msdos",
481
"kernel": "3.2.0",
482
"osfamily": "linux",
483
"users": "root user",
484
"gui": "GNOME 3.4",
485
"sortorder": "2",
486
"os": "debian",
487
"root_partition": "1",
488
"description": "Debian 7.4 (Wheezy) Desktop"
489
},
490
"location": "pithos://25ecced9-bf53-4145-91ee-cf47377e9fb2/images/debian_desktop-7.0-3-x86_64.diskdump",
491
"container_format": "bare",
492
"owner": "25ecced9-bf53-4145-91ee-cf47377e9fb2",
493
"is_public": true,
494
"deleted_at": "",
495
"id": "31773c86-46b4-420c-bd9e-d6f51535a902",
496
"size": 4044349440
497
},
498
{
499
"status": "available",
500
"name": "Debian Base",
501
"checksum": "5921d279415e13d1fcf278e3ffb302f7f4b2618cb6ba9a0d5b273ca1bbb8c0bc",
502
"created_at": "2014-02-10 17:03:46",
503
"disk_format": "diskdump",
504
"updated_at": "2014-02-10 17:03:46",
505
"properties": {
506
"partition_table": "msdos",
507
"kernel": "3.2.0",
508
"osfamily": "linux",
509
"users": "root",
510
"gui": "No GUI",
511
"sortorder": "1",
512
"os": "debian",
513
"root_partition": "1",
514
"description": "Debian 7.4 (Wheezy) Base System"
515
},
516
"location": "pithos://25ecced9-bf53-4145-91ee-cf47377e9fb2/images/debian_base-7.0-3-x86_64.diskdump",
517
"container_format": "bare",
518
"owner": "25ecced9-bf53-4145-91ee-cf47377e9fb2",
519
"is_public": true,
520
"deleted_at": "",
521
"id": "eb925e7d-63be-45a6-bc1c-fba9e74bc996",
522
"size": 570810368
523
},
524
{
525
"status": "available",
526
"name": "Debian Base (OldStable)",
527
"checksum": "be5b30830cda9e70951ea1e5e76a35334ea23da4615fdf6071f9a748fad8ee4b",
528
"created_at": "2014-02-10 16:45:33",
529
"disk_format": "diskdump",
530
"updated_at": "2014-02-10 16:45:33",
531
"properties": {
532
"partition_table": "msdos",
533
"kernel": "2.6.32",
534
"osfamily": "linux",
535
"users": "root",
536
"gui": "No GUI",
537
"sortorder": "1",
538
"os": "debian",
539
"root_partition": "1",
540
"description": "Debian 6.0.8 (Squeeze) Base System"
541
},
542
"location": "pithos://25ecced9-bf53-4145-91ee-cf47377e9fb2/images/debian_base-6.0-13-x86_64.diskdump",
543
"container_format": "bare",
544
"owner": "25ecced9-bf53-4145-91ee-cf47377e9fb2",
545
"is_public": true,
546
"deleted_at": "",
547
"id": "09b738a6-bf7e-4eae-b271-082d1081862c",
548
"size": 474664960
549
},
550
{
551
"status": "available",
552
"name": "mininet_netman2014",
553
"checksum": "3a35b40900493af100d0e6deb96aec7c99029a1cff694f838c22063faa38a2e6",
554
"created_at": "2014-02-03 18:30:50",
555
"disk_format": "diskdump",
556
"updated_at": "2014-02-03 18:30:50",
557
"properties": {
558
"partition_table": "msdos",
559
"osfamily": "linux",
560
"description": "Mininet 2.1.0 for NetMan 2014 lab",
561
"os": "ubuntu",
562
"root_partition": "1",
563
"users": "mininet root"
564
},
565
"location": "pithos://4b6c2887-0a14-4a4b-bfaf-d665ca70dff8/images/mininet_netman2014-201402031013.diskdump",
566
"container_format": "bare",
567
"owner": "4b6c2887-0a14-4a4b-bfaf-d665ca70dff8",
568
"is_public": true,
569
"deleted_at": "",
570
"id": "88e185c5-fd22-452a-943d-de230d4a3be9",
571
"size": 1851117568
572
},
573
{
574
"status": "available",
575
"name": "cassandra_base_v01",
576
"checksum": "600ec3523613183fd1ed66719c7791ddac3a7d6754d2c930de0ba32a7cfc7318",
577
"created_at": "2014-01-30 16:03:35",
578
"disk_format": "diskdump",
579
"updated_at": "2014-01-30 16:03:35",
580
"properties": {
581
"partition_table": "msdos",
582
"osfamily": "linux",
583
"users": "root user",
584
"swap": "5:1022",
585
"os": "ubuntu",
586
"root_partition": "1",
587
"description": "Ubuntu SVR 13.10 + java,cassandra,YCSB,ganglia"
588
},
589
"location": "pithos://51819571-6e2e-429e-8ffe-0f1999acbc1c/images/cassandra_base_v01-201401301753.diskdump",
590
"container_format": "bare",
591
"owner": "51819571-6e2e-429e-8ffe-0f1999acbc1c",
592
"is_public": true,
593
"deleted_at": "",
594
"id": "8f0dab5d-1f7d-4783-b3ef-005ef0677355",
595
"size": 2268602368
596
},
597
{
598
"status": "available",
599
"name": "mininet-test2",
600
"checksum": "5a4d3075414618555b5a0da1ce1a82d076c20379a2c15c1f4cb56981ea9fdc4b",
601
"created_at": "2014-01-28 15:44:34",
602
"disk_format": "diskdump",
603
"updated_at": "2014-01-28 15:44:34",
604
"properties": {
605
"partition_table": "msdos",
606
"osfamily": "linux",
607
"description": "Mininet on Ubuntu 13.04",
608
"os": "ubuntu",
609
"root_partition": "1",
610
"users": "mininet root"
611
},
612
"location": "pithos://4b6c2887-0a14-4a4b-bfaf-d665ca70dff8/images/mininet-test2-201401280735.diskdump",
613
"container_format": "bare",
614
"owner": "4b6c2887-0a14-4a4b-bfaf-d665ca70dff8",
615
"is_public": true,
616
"deleted_at": "",
617
"id": "f0ebd2e4-1a27-450e-8c83-e8d350c0dc24",
618
"size": 1851379712
619
},
620
{
621
"status": "available",
622
"name": "mininet-test1",
623
"checksum": "1e6d70d0d48cb93c4c40695ec75d4c973512da8bc82803ed4eecf1e5cd1a4402",
624
"created_at": "2014-01-28 14:26:12",
625
"disk_format": "diskdump",
626
"updated_at": "2014-01-28 14:26:12",
627
"properties": {
628
"partition_table": "msdos",
629
"osfamily": "linux",
630
"description": "Mininet on Ubuntu 13.04",
631
"os": "ubuntu",
632
"root_partition": "1",
633
"users": "mininet root"
634
},
635
"location": "pithos://4b6c2887-0a14-4a4b-bfaf-d665ca70dff8/images/mininet-test1-201401280618.diskdump",
636
"container_format": "bare",
637
"owner": "4b6c2887-0a14-4a4b-bfaf-d665ca70dff8",
638
"is_public": true,
639
"deleted_at": "",
640
"id": "726090b4-00d2-4f44-bb32-83429181bee3",
641
"size": 1848168448
642
},
643
{
644
"status": "available",
645
"name": "debian_ATDS_2014",
646
"checksum": "20d4ca674c216f2a36ad94bbe7b924e357490655871c399f3b2c4e9987a62312",
647
"created_at": "2014-01-28 11:23:54",
648
"disk_format": "diskdump",
649
"updated_at": "2014-01-28 11:23:54",
650
"properties": {
651
"partition_table": "msdos",
652
"osfamily": "linux",
653
"users": "root",
654
"swap": "5:466",
655
"os": "debian",
656
"root_partition": "1",
657
"description": "Image for ATDS 2014"
658
},
659
"location": "pithos://d4a583cb-444e-4bb7-a588-fa1134c23efc/images/debian_ATDS_2014-201401281318.diskdump",
660
"container_format": "bare",
661
"owner": "d4a583cb-444e-4bb7-a588-fa1134c23efc",
662
"is_public": true,
663
"deleted_at": "",
664
"id": "67f21595-ab0d-4af5-8974-b655b679a86a",
665
"size": 1208614912
666
},
667
{
668
"status": "available",
669
"name": "okeanos-is",
670
"checksum": "4fda6e3716e9b5bcc0a4a0707ea1eff68659777a4d4c636446fe6035e099f7f7",
671
"created_at": "2014-01-24 08:56:54",
672
"disk_format": "diskdump",
673
"updated_at": "2014-01-24 08:56:54",
674
"properties": {
675
"partition_table": "msdos",
676
"osfamily": "linux",
677
"description": "okeanos-is-on-centos",
678
"os": "centos",
679
"root_partition": "1",
680
"users": "root"
681
},
682
"location": "pithos://7c1adab8-7b7f-4b27-9f5d-423629ecc05d/images/okeanos-is-201401241028.diskdump",
683
"container_format": "bare",
684
"owner": "7c1adab8-7b7f-4b27-9f5d-423629ecc05d",
685
"is_public": true,
686
"deleted_at": "",
687
"id": "f00b0d29-62f4-46db-a78e-370d596fc553",
688
"size": 4442464256
689
},
690
{
691
"status": "available",
692
"name": "Windows Server 2012",
693
"checksum": "38b5424f9977a441861a20e82a78f86985fc579991245b682aacc04915e8f4db",
694
"created_at": "2014-01-23 09:35:02",
695
"disk_format": "diskdump",
696
"updated_at": "2014-01-23 09:35:02",
697
"properties": {
698
"partition_table": "msdos",
699
"kernel": "Windows NT Kernel",
700
"osfamily": "windows",
701
"users": "Administrator",
702
"gui": "Windows,Metro UI",
703
"sortorder": "8",
704
"os": "windows",
705
"root_partition": "2",
706
"description": "Windows Server 2012 Datacenter"
707
},
708
"location": "pithos://25ecced9-bf53-4145-91ee-cf47377e9fb2/images/windows-2012-6-x86_64.diskdump",
709
"container_format": "bare",
710
"owner": "25ecced9-bf53-4145-91ee-cf47377e9fb2",
711
"is_public": true,
712
"deleted_at": "",
713
"id": "09ff8272-3018-422f-a91f-386615ef0fb2",
714
"size": 15780020224
715
},
716
{
717
"status": "available",
718
"name": "HMMY-tools v1.0",
719
"checksum": "d21c6893df33d24afb10e348fc4bd93b538040b22b3d2608e461762b95970f23",
720
"created_at": "2014-01-22 16:25:59",
721
"disk_format": "diskdump",
722
"updated_at": "2014-01-22 16:25:59",
723
"properties": {
724
"partition_table": "msdos",
725
"osfamily": "linux",
726
"description": "Ubuntu 12.04 LTS with pre-installed tools for HMMY students",
727
"os": "ubuntu",
728
"root_partition": "1",
729
"users": "root user"
730
},
731
"location": "pithos://70083b2f-afa0-4514-b98b-5fd754de59b9/images/HMMY-tools v1.0-201401221736.diskdump",
732
"container_format": "bare",
733
"owner": "70083b2f-afa0-4514-b98b-5fd754de59b9",
734
"is_public": true,
735
"deleted_at": "",
736
"id": "430afb49-6471-425f-9aec-622ce41d7a5a",
737
"size": 8173547520
738
},
739
{
740
"status": "available",
741
"name": "xubuntu",
742
"checksum": "00751c6e170d493218725bd7485e8c1e1f034a85eb20db4bc924e90962676e82",
743
"created_at": "2014-01-17 15:50:34",
744
"disk_format": "diskdump",
745
"updated_at": "2014-01-17 15:50:34",
746
"properties": {
747
"partition_table": "msdos",
748
"osfamily": "linux",
749
"users": "user",
750
"swap": "5:1022",
751
"os": "ubuntu",
752
"root_partition": "1",
753
"description": "Xubuntu 13.10"
754
},
755
"location": "pithos://1dc6f624-cf11-473a-8a18-ed9171e47023/images/xubuntu-201401171739.diskdump",
756
"container_format": "bare",
757
"owner": "1dc6f624-cf11-473a-8a18-ed9171e47023",
758
"is_public": true,
759
"deleted_at": "",
760
"id": "2953ee6f-7dac-4173-9c13-19a0b87162f9",
761
"size": 2812469248
762
},
763
{
764
"status": "available",
765
"name": "Mageia-3",
766
"checksum": "64e117012f89154f5668b59e27f399768e218c60c50d6cd9ca5645466270bb75",
767
"created_at": "2014-01-16 20:53:57",
768
"disk_format": "diskdump",
769
"updated_at": "2014-01-16 20:53:57",
770
"properties": {
771
"partition_table": "msdos",
772
"osfamily": "linux",
773
"description": "Mageia 3",
774
"os": "mageia",
775
"root_partition": "1",
776
"users": "root user"
777
},
778
"location": "pithos://41a38154-55fb-48ca-a8ad-5652265dc7da/images/Mageia-3-x86_64.img",
779
"container_format": "bare",
780
"owner": "41a38154-55fb-48ca-a8ad-5652265dc7da",
781
"is_public": true,
782
"deleted_at": "",
783
"id": "ca446474-a846-45ab-b8b9-7bcd41e7c905",
784
"size": 909467136
785
},
786

  
787
{
788
"status": "available",
789
"name": "Openfiler ESA 2.99",
790
"checksum": "5ef6be48c689126cfb2c24c1c70f73a4dccb2f0e7ea173d1dee311970fad2d57",
791
"created_at": "2014-01-16 16:25:50",
792
"disk_format": "diskdump",
793
"updated_at": "2014-01-16 16:25:50",
794
"location": "pithos://ae458ae3-b92e-479f-8aa4-8c3e257c902a/images/openfiler-2.99-201401161810.diskdump",
795
"container_format": "bare",
796
"owner": "ae458ae3-b92e-479f-8aa4-8c3e257c902a",
797
"is_public": true,
798
"deleted_at": "",
799
"id": "890d0d9c-f9f6-4643-bc9d-f6eb387573a1",
800
"size": 1887083520,
801
"properties": {
802
  "partition_table": "msdos",
803
  "osfamily": "linux",
804
  "users": "root openfiler ofguest",
805
  "description": "Openfiler 2.99",
806
  "swap": "3:1028",
807
  "exclude_task_assignhostname": "yes",
808
  "os": "linux",
809
  "root_partition": "2",
810
  "password_hashing_method": "md5"
811
},
812
},
813

  
814

  
815
{
816
"status": "available",
817
"name": "NetBSD",
818
"checksum": "7dabf52d1632d3bcf83cbb89e4d1bfec715d184542dd8741b2d9f100d78f53fc",
819
"created_at": "2014-01-16 11:17:01",
820
"disk_format": "diskdump",
821
"updated_at": "2014-01-16 11:17:01",
822
"properties": {
823
"partition_table": "msdos",
824
"osfamily": "netbsd",
825
"users": "root",
826
"gui": "No GUI",
827
"sortorder": "12",
828
"os": "netbsd",
829
"root_partition": "1",
830
"description": "NetBSD 6.1.2 (GENERIC)"
831
},
832
"location": "pithos://25ecced9-bf53-4145-91ee-cf47377e9fb2/images/netbsd-6.1-2-x86_64.diskdump",
833
"container_format": "bare",
834
"owner": "25ecced9-bf53-4145-91ee-cf47377e9fb2",
835
"is_public": true,
836
"deleted_at": "",
837
"id": "1768283d-0034-4b27-a2e6-7063a3f5ab06",
838
"size": 5100273664
839
},
840
{
841
"status": "available",
842
"name": "OpenBSD",
843
"checksum": "db7135cb525adfd464c196c204aa0a096d6e8596b7c01ad27c9a7120ba4dc4e0",
844
"created_at": "2014-01-14 10:20:17",
845
"disk_format": "diskdump",
846
"updated_at": "2014-01-14 10:20:17",
847
"properties": {
848
"partition_table": "msdos",
849
"osfamily": "openbsd",
850
"users": "root",
851
"gui": "No GUI",
852
"sortorder": "11",
853
"os": "openbsd",
854
"root_partition": "4",
855
"description": "OpenBSD 5.4 (GENERIC)"
856
},
857
"location": "pithos://25ecced9-bf53-4145-91ee-cf47377e9fb2/images/openbsd-5.4-2-x86_64.diskdump",
858
"container_format": "bare",
859
"owner": "25ecced9-bf53-4145-91ee-cf47377e9fb2",
860
"is_public": true,
861
"deleted_at": "",
862
"id": "826db4a0-8ab1-45eb-b6fe-7c9a53a8a5b8",
863
"size": 5100273664
864
},
865
{
866
"status": "available",
867
"name": "Ubuntu Desktop LTS",
868
"checksum": "cdeb5be4eb282aed75389e8b2a9ea489cf277234a5f7502aa62debf73c184c91",
869
"created_at": "2013-12-19 14:16:43",
870
"disk_format": "diskdump",
871
"updated_at": "2013-12-19 14:16:43",
872
"properties": {
873
"partition_table": "msdos",
874
"kernel": "3.2.0",
875
"osfamily": "linux",
876
"users": "user",
877
"gui": "Unity 5.10",
878
"sortorder": "3",
879
"os": "ubuntu",
880
"root_partition": "1",
881
"description": "Ubuntu 12.04.3 LTS"
882
},
883
"location": "pithos://25ecced9-bf53-4145-91ee-cf47377e9fb2/images/ubuntu_desktop-12.04-6-x86_64.diskdump",
884
"container_format": "bare",
885
"owner": "25ecced9-bf53-4145-91ee-cf47377e9fb2",
886
"is_public": true,
887
"deleted_at": "",
888
"id": "57e4c30b-b7e8-44e8-ae93-16e4a6ebc11b",
889
"size": 2610372608
890
},
891
{
892
"status": "available",
893
"name": "Ubuntu Server",
894
"checksum": "15d960bd90784096a612aabb9cbdcab8ae1a9d8d5d847d20f4c416c8291727cd",
895
"created_at": "2013-12-19 10:48:39",
896
"disk_format": "diskdump",
897
"updated_at": "2013-12-19 10:48:39",
898
"properties": {
899
"partition_table": "msdos",
900
"kernel": "3.2.0",
901
"osfamily": "linux",
902
"users": "user",
903
"gui": "No GUI",
904
"sortorder": "3",
905
"os": "ubuntu",
906
"root_partition": "1",
907
"description": "Ubuntu 12.04.3 LTS"
908
},
909
"location": "pithos://25ecced9-bf53-4145-91ee-cf47377e9fb2/images/ubuntu_server-12.04-7-x86_64.diskdump",
910
"container_format": "bare",
911
"owner": "25ecced9-bf53-4145-91ee-cf47377e9fb2",
912
"is_public": true,
913
"deleted_at": "",
914
"id": "d77f6f3d-8935-4bae-86b8-48d039106f72",
915
"size": 1080287232
916
},
917
{
918
"status": "available",
919
"name": "Kubuntu",
920
"checksum": "72ee40c0c66451227f07f6d6213274cf899e9f8cb492033d20ccbdfa0fdb7bdc",
921
"created_at": "2013-12-11 09:45:50",
922
"disk_format": "diskdump",
923
"updated_at": "2013-12-11 09:45:50",
924
"properties": {
925
"partition_table": "msdos",
926
"kernel": "3.11.0",
927
"osfamily": "linux",
928
"users": "user",
929
"gui": "KDE 4.11.2",
930
"sortorder": "4",
931
"os": "kubuntu",
932
"root_partition": "1",
933
"description": "Kubuntu 13.10"
934
},
935
"location": "pithos://25ecced9-bf53-4145-91ee-cf47377e9fb2/images/kubuntu-13.10-1-x86_64.diskdump",
936
"container_format": "bare",
937
"owner": "25ecced9-bf53-4145-91ee-cf47377e9fb2",
938
"is_public": true,
939
"deleted_at": "",
940
"id": "5f0a7a25-6210-4e28-b6fa-c9978fb3f61d",
941
"size": 3425742848
942
},
943
{
944
"status": "available",
945
"name": "CELAR_Jenkins_snapshot_111213",
946
"checksum": "6d45dc96602288eb3551456fea8a7b56a6d70ae1345ece08c3db35f020cdc7e8",
947
"created_at": "2013-12-11 08:57:38",
948
"disk_format": "diskdump",
949
"updated_at": "2013-12-11 08:57:38",
950
"properties": {
951
"partition_table": "msdos",
952
"osfamily": "linux",
953
"description": "Ubuntu 12.04.2 LTS",
954
"os": "ubuntu",
955
"root_partition": "1",
956
"users": "user konstantin vangelis"
957
},
958
"location": "pithos://f782c65e-b9e7-47fc-8ed0-6cc11e7658e8/images/CELAR_Jenkins_snapshot_111213-201312111053.diskdump",
959
"container_format": "bare",
960
"owner": "f782c65e-b9e7-47fc-8ed0-6cc11e7658e8",
961
"is_public": true,
962
"deleted_at": "",
963
"id": "fa34e0a0-b474-464b-a563-9aea1bc3e9b5",
964
"size": 2463830016
965
},
966
{
967
"status": "available",
968
"name": "CELAR_Nexus_snapshot_111213",
969
"checksum": "13df1df1751af3c70c71be5caea0d7c0b29e80b2ada484e3231b3f6623995436",
970
"created_at": "2013-12-11 08:57:38",
971
"disk_format": "diskdump",
972
"updated_at": "2013-12-11 08:57:38",
973
"properties": {
974
"partition_table": "msdos",
975
"osfamily": "linux",
976
"description": "Ubuntu 12.04.3 LTS",
977
"os": "ubuntu",
978
"root_partition": "1",
979
"users": "user konstantin vangelis"
980
},
981
"location": "pithos://f782c65e-b9e7-47fc-8ed0-6cc11e7658e8/images/CELAR_Nexus_snapshot_111213-201312111052.diskdump",
982
"container_format": "bare",
983
"owner": "f782c65e-b9e7-47fc-8ed0-6cc11e7658e8",
984
"is_public": true,
985
"deleted_at": "",
986
"id": "8258fe3d-3b6d-49c7-88aa-bc28cc44d609",
987
"size": 2709106688
988
},
989
{
990
"status": "available",
991
"name": "Ubuntu Desktop",
992
"checksum": "36fbc5c30735ef5dfa7b03db6dd873c09597dcc4bd9051d76173a5d9ad7a679d",
993
"created_at": "2013-12-10 11:29:35",
994
"disk_format": "diskdump",
995
"updated_at": "2013-12-10 11:29:35",
996
"properties": {
997
"partition_table": "msdos",
998
"kernel": "3.11.0",
999
"osfamily": "linux",
1000
"users": "user",
1001
"gui": "MATE Desktop Environment 1.6.0",
1002
"sortorder": "3",
1003
"os": "ubuntu",
1004
"root_partition": "1",
1005
"description": "Ubuntu 13.10 with MATE"
1006
},
1007
"location": "pithos://25ecced9-bf53-4145-91ee-cf47377e9fb2/images/ubuntu_desktop-13.10-1-x86_64.diskdump",
1008
"container_format": "bare",
1009
"owner": "25ecced9-bf53-4145-91ee-cf47377e9fb2",
1010
"is_public": true,
1011
"deleted_at": "",
1012
"id": "49beee24-17b5-4bb2-9de6-7cef3d92de42",
1013
"size": 3679756288
1014
},
1015
{
1016
"status": "available",
1017
"name": "Dartha ubuntu",
1018
"checksum": "be14316a5f867d763d00a7173dc9e3b2d295df7dd365061b3dbb8a2eaa5e1203",
1019
"created_at": "2013-12-10 09:15:06",
1020
"disk_format": "diskdump",
1021
"updated_at": "2013-12-10 09:15:06",
1022
"properties": {
1023
"partition_table": "msdos",
1024
"osfamily": "linux",
1025
"description": "Ubuntu 12.04.3 LTS no gui",
1026
"os": "ubuntu",
1027
"root_partition": "1",
1028
"users": "malf"
1029
},
1030
"location": "pithos://d098aa00-f56c-4cc0-8abe-7ed5b9a4bf2a/images/Dartha ubuntu-201312101103.diskdump",
1031
"container_format": "bare",
1032
"owner": "d098aa00-f56c-4cc0-8abe-7ed5b9a4bf2a",
1033
"is_public": true,
1034
"deleted_at": "",
1035
"id": "d0ae1af2-eac0-453e-bb2e-720b10a2e2d4",
1036
"size": 2346725376
1037
},
1038
{
1039
"status": "available",
1040
"name": "Dartha Ubuntu",
1041
"checksum": "0f436378ba7c0c5700b0133fb4eb6d0181a33e4b696b44a019abb8f77cede553",
1042
"created_at": "2013-12-09 22:00:58",
1043
"disk_format": "diskdump",
1044
"updated_at": "2013-12-09 22:00:58",
1045
"properties": {
1046
"partition_table": "msdos",
1047
"osfamily": "linux",
1048
"description": "Ubuntu 12.04.3 Base install no Gui",
1049
"os": "ubuntu",
1050
"root_partition": "1",
1051
"users": "malf"
1052
},
1053
"location": "pithos://d098aa00-f56c-4cc0-8abe-7ed5b9a4bf2a/images/Dartha Ubuntu-201312092103.diskdump",
1054
"container_format": "bare",
1055
"owner": "d098aa00-f56c-4cc0-8abe-7ed5b9a4bf2a",
1056
"is_public": true,
1057
"deleted_at": "",
1058
"id": "83c4c2d5-50b4-4400-b95d-3d10a760e8d6",
1059
"size": 1128448000
1060
},
1061
{
1062
"status": "available",
1063
"name": "archie-2013.12.01",
1064
"checksum": "3436cf7b39d6843969c2049520fad40a984afaa3584eb89baddb7e4c074cfffe",
1065
"created_at": "2013-12-02 21:21:51",
1066
"disk_format": "diskdump",
1067
"updated_at": "2013-12-02 21:21:51",
1068
"properties": {
1069
"partition_table": "gpt",
1070
"osfamily": "linux",
1071
"description": "ArchLinux 2013.12.01 w/ openssh,vim and iptables setup - Only PubKeyAuth accepted",
1072
"os": "archlinux",
1073
"root_partition": "2",
1074
"users": "root"
1075
},
1076
"location": "pithos://7e271a0b-1427-45ec-9916-f8e72bfbf3d4/images/archie-2013.12.01-201312022313.diskdump",
1077
"container_format": "bare",
1078
"owner": "7e271a0b-1427-45ec-9916-f8e72bfbf3d4",
1079
"is_public": true,
1080
"deleted_at": "",
1081
"id": "8fea4394-78fe-409d-a560-0cd517986c6f",
1082
"size": 648056832
1083
},
1084
{
1085
"status": "available",
1086
"name": "arch",
1087
"checksum": "c10e2fdf8acc6239bd07350897207218285b7348b8e1931a9ca161df06b700c3",
1088
"created_at": "2013-11-12 18:51:06",
1089
"disk_format": "diskdump",
1090
"updated_at": "2013-11-12 18:51:06",
1091
"properties": {
1092
"partition_table": "gpt",
1093
"osfamily": "linux",
1094
"description": "unknown",
1095
"os": "archlinux",
1096
"root_partition": "1",
1097
"users": "root"
1098
},
1099
"location": "pithos://00759b1d-a20e-439a-99ad-f11a91ba68e6/images/arch-201311122011.diskdump",
1100
"container_format": "bare",
1101
"owner": "00759b1d-a20e-439a-99ad-f11a91ba68e6",
1102
"is_public": true,
1103
"deleted_at": "",
1104
"id": "4a65772b-98fd-43b3-b3b9-cd083849e63b",
1105
"size": 752332800
1106
},
1107
{
1108
"status": "available",
1109
"name": "ckan_2_1-debian_7_1",
1110
"checksum": "868fe3e7a016ec7d366bd15ecb33ea19b1160732ac05b7350e47a43ee133fb56",
1111
"created_at": "2013-11-08 07:32:49",
1112
"disk_format": "diskdump",
1113
"updated_at": "2013-11-08 07:32:49",
1114
"properties": {
1115
"partition_table": "msdos",
1116
"osfamily": "linux",
1117
"description": "CKAN 2.1 base installation on a debian 7.1 system",
1118
"os": "debian",
1119
"root_partition": "1",
1120
"users": "root ckaner"
1121
},
1122
"location": "pithos://66a0f15a-69ce-4a18-8177-2343da55c2e1/images/ckan_2_1-debian_7_1-201311080928.diskdump",
1123
"container_format": "bare",
1124
"owner": "66a0f15a-69ce-4a18-8177-2343da55c2e1",
1125
"is_public": true,
1126
"deleted_at": "",
1127
"id": "0e399015-8723-4c78-8198-75bdf693cdde",
1128
"size": 1995177984
1129
},
1130
{
1131
"status": "available",
1132
"name": "OPENBSD54",
1133
"checksum": "5215920e1393f47d6fa10444695a49061b037e831c4cafae82c3839e9453030b",
1134
"created_at": "2013-11-04 18:33:51",
1135
"disk_format": "diskdump",
1136
"updated_at": "2013-11-04 18:33:51",
1137
"properties": {
1138
"exclude_all_tasks": "true"
1139
},
1140
"location": "pithos://f1380d5a-7d53-427a-a255-5fdd50c8c983/images/openbsd54.diskdump",
1141
"container_format": "bare",
1142
"owner": "f1380d5a-7d53-427a-a255-5fdd50c8c983",
1143
"is_public": true,
1144
"deleted_at": "",
1145
"id": "493e78e9-f469-4a71-abea-4d50db71f535",
1146
"size": 2147483648
1147
},
1148
{
1149
"status": "available",
1150
"name": "Gitlab ubuntu 12.04",
1151
"checksum": "93d0832a479dee3b8f8e0ac042cfcc93bc462399b012726b5bf9aa05abd855bc",
1152
"created_at": "2013-10-31 23:37:16",
1153
"disk_format": "diskdump",
1154
"updated_at": "2013-10-31 23:37:16",
1155
"properties": {
1156
"partition_table": "msdos",
1157
"osfamily": "linux",
1158
"users": "user",
1159
"exclude_task_deletesshkeys": "yes",
1160
"exclude_task_assignhostname": "yes",
1161
"os": "ubuntu",
1162
"root_partition": "1",
1163
"description": "Ubuntu 12.04.2 LTS"
1164
},
1165
"location": "pithos://23f92921-cef9-4aca-b74d-448628380949/images/ubuntu_gitlab.diskdump",
1166
"container_format": "bare",
1167
"owner": "23f92921-cef9-4aca-b74d-448628380949",
1168
"is_public": true,
1169
"deleted_at": "",
1170
"id": "23f7c7ad-544c-46db-8626-e9f82050cee5",
1171
"size": 35648634880
1172
},
1173
{
1174
"status": "available",
1175
"name": "openBSD53",
1176
"checksum": "21c98906032b763550098a9b07411d684f0c7772aacb2581a8f6514590090461",
1177
"created_at": "2013-10-29 16:29:36",
1178
"disk_format": "diskdump",
1179
"updated_at": "2013-10-29 16:29:36",
1180
"properties": {
1181
"osfamily": "freebsd",
1182
"exclude_all_tasks": "yes",
1183
"root_partition": "1"
1184
},
1185
"location": "pithos://f1380d5a-7d53-427a-a255-5fdd50c8c983/images/openBSD53.diskdump",
1186
"container_format": "bare",
1187
"owner": "f1380d5a-7d53-427a-a255-5fdd50c8c983",
1188
"is_public": true,
1189
"deleted_at": "",
1190
"id": "b26866dd-4626-4c12-85e3-9435048dd8a7",
1191
"size": 2147483648
1192
},
1193
{
1194
"status": "available",
1195
"name": "openBSD5",
1196
"checksum": "123223fc64c98657c28205e660cfb814ad6c44c15d7692029b9afd6ebea0920b",
1197
"created_at": "2013-10-27 22:36:49",
1198
"disk_format": "diskdump",
1199
"updated_at": "2013-10-27 22:36:49",
1200
"properties": {
1201
"osfamily": "freebsd",
1202
"root_partition": "1"
1203
},
1204
"location": "pithos://f1380d5a-7d53-427a-a255-5fdd50c8c983/images/openBSD51.diskdump",
1205
"container_format": "bare",
1206
"owner": "f1380d5a-7d53-427a-a255-5fdd50c8c983",
1207
"is_public": true,
1208
"deleted_at": "",
1209
"id": "8ff7d98a-9beb-46d2-8977-39b29443a7b2",
1210
"size": 2147483648
1211
},
1212
{
1213
"status": "available",
1214
"name": "Ubuntu orchestrator",
1215
"checksum": "a99ecd32f79e28d723f4d73a2594406e6002c74ff3ae512de6feb06135b811a8",
1216
"created_at": "2013-10-24 14:35:10",
1217
"disk_format": "diskdump",
1218
"updated_at": "2013-10-24 14:35:10",
1219
"properties": {
1220
"partition_table": "msdos",
1221
"osfamily": "linux",
1222
"users": "root",
1223
"exclude_task_deletesshkeys": "yes",
1224
"os": "ubuntu",
1225
"root_partition": "1",
1226
"description": "Ubuntu 13.04"
1227
},
1228
"location": "pithos://d4a583cb-444e-4bb7-a588-fa1134c23efc/images/ubuntu.diskdump",
1229
"container_format": "bare",
1230
"owner": "d4a583cb-444e-4bb7-a588-fa1134c23efc",
1231
"is_public": true,
1232
"deleted_at": "",
1233
"id": "01a4b2f1-2acd-4031-8801-3d94ebe3f4d4",
1234
"size": 4012126208
1235
},
1236
{
1237
"status": "available",
1238
"name": "scientificlinux",
1239
"checksum": "1d6a6568aa3ae0ae685096a716c0ad5b98bb00e6cc635a339f00f9d332ca76ef",
1240
"created_at": "2013-10-11 15:55:20",
1241
"disk_format": "diskdump",
1242
"updated_at": "2013-10-11 15:55:20",
1243
"properties": {
1244
"partition_table": "msdos",
1245
"osfamily": "linux",
1246
"description": "Scientific Linux SL release 5.5 (Boron)",
1247
"os": "scientificlinux",
1248
"root_partition": "1",
1249
"users": "root"
1250
},
1251
"location": "pithos://82a704cd-8874-4302-ae16-7c7221bdfb57/images/scientificlinux-201310111828.diskdump",
1252
"container_format": "bare",
1253
"owner": "82a704cd-8874-4302-ae16-7c7221bdfb57",
1254
"is_public": true,
1255
"deleted_at": "",
1256
"id": "e9ec7d24-96a1-412d-8e05-569bac5744a4",
1257
"size": 3278614016
1258
},
1259
{
1260
"status": "available",
1261
"name": "Ubuntu-server-13.04",
1262
"checksum": "0bb01480c0db44a473b79dd3e4fb4f66a02de87d572e1cf083d193afeaf3f601",
1263
"created_at": "2013-10-06 02:31:19",
1264
"disk_format": "diskdump",
1265
"updated_at": "2013-10-06 02:31:19",
1266
"properties": {
1267
"partition_table": "msdos",
1268
"osfamily": "linux",
1269
"description": "Ubuntu server 13.04",
1270
"os": "ubuntu",
1271
"root_partition": "1",
1272
"users": "user"
1273
},
1274
"location": "pithos://9ac455ec-21aa-427d-8c11-2b34faa8e006/images/Ubuntu-server-13.04-201310051444.diskdump",
1275
"container_format": "bare",
1276
"owner": "9ac455ec-21aa-427d-8c11-2b34faa8e006",
1277
"is_public": true,
1278
"deleted_at": "",
1279
"id": "545d36df-53da-46bd-86ed-759ac3eb1995",
1280
"size": 1303494656
1281
},
1282
{
1283
"status": "available",
1284
"name": "ubuntu server 12.04 + asterisk voip server",
1285
"checksum": "4d2fe46b7cd068d520773268cf25f78fdc85bfbe3c2f521d4b78b577fee7f087",
1286
"created_at": "2013-10-05 22:19:00",
1287
"disk_format": "diskdump",
1288
"updated_at": "2013-10-05 22:19:00",
1289
"properties": {
1290
"partition_table": "msdos",
1291
"osfamily": "linux",
1292
"description": "Ubuntu 12.04.3 LTS",
1293
"os": "ubuntu",
1294
"root_partition": "1",
1295
"users": "user"
1296
},
1297
"location": "pithos://c3eb14d6-ed97-4b00-8b68-7ccecad73f37/images/ubuntu server 12.04 + asterisk voip server-201310060104.diskdump",
1298
"container_format": "bare",
1299
"owner": "c3eb14d6-ed97-4b00-8b68-7ccecad73f37",
1300
"is_public": true,
1301
"deleted_at": "",
1302
"id": "0f12a5e0-5369-4bed-abd6-5b03d87cc5da",
1303
"size": 1805869056
1304
},
1305
{
1306
"status": "available",
1307
"name": "archlinux",
1308
"checksum": "58a69c601898ded320cce72d84f8dbe651e33fc5ea7435bd6c03da4798e92ec8",
1309
"created_at": "2013-10-03 06:56:14",
1310
"disk_format": "diskdump",
1311
"updated_at": "2013-10-03 06:56:14",
1312
"properties": {
1313
"partition_table": "gpt",
1314
"osfamily": "linux",
1315
"users": "root",
1316
"gui": "none",
1317
"filesystem": "ext4",
1318
"os": "archlinux",
1319
"root_partition": "2",
1320
"description": "03/10/2013"
1321
},
1322
"location": "pithos://309cf993-79be-4aed-b335-9f98ff79800d/images/archlinux.diskdump",
1323
"container_format": "bare",
1324
"owner": "309cf993-79be-4aed-b335-9f98ff79800d",
1325
"is_public": true,
1326
"deleted_at": "",
1327
"id": "c9f3980d-6a82-4121-b24e-d7b5f29a4a00",
1328
"size": 876949504
1329
},
1330
{
1331
"status": "available",
1332
"name": "Kubuntu LTS",
1333
"checksum": "1bf3e14d72bfb340a83e54ccfd7137ee0af7092c6d5dbfcc99432b4cb892f0d3",
1334
"created_at": "2013-09-28 07:35:45",
1335
"disk_format": "diskdump",
1336
"updated_at": "2013-09-28 07:35:45",
1337
"properties": {
1338
"partition_table": "msdos",
1339
"kernel": "3.2.0",
1340
"osfamily": "linux",
1341
"users": "user",
1342
"gui": "KDE 4.8.2",
1343
"sortorder": "4",
1344
"os": "kubuntu",
1345
"root_partition": "1",
1346
"description": "Kubuntu 12.04.3 LTS"
1347
},
1348
"location": "pithos://25ecced9-bf53-4145-91ee-cf47377e9fb2/images/kubuntu-12.04-5-x86_64.diskdump",
1349
"container_format": "bare",
1350
"owner": "25ecced9-bf53-4145-91ee-cf47377e9fb2",
1351
"is_public": true,
1352
"deleted_at": "",
1353
"id": "e755d33c-92fc-4042-922e-ca03d8b3ecbd",
1354
"size": 2707611648
1355
},
1356
{
1357
"status": "available",
1358
"name": "snf-test-db590326-0df1-464d-844f-a246d7ccac91.diskdump",
1359
"checksum": "54dc540edb181326f5231195a859b07df0fd35736f245910d95fa34d73fd6b18",
1360
"created_at": "2013-09-25 06:22:22",
1361
"disk_format": "diskdump",
1362
"updated_at": "2013-09-25 06:22:22",
1363
"properties": {
1364
"osfamily": "linux",
1365
"root_partition": "1"
1366
},
1367
"location": "pithos://c996c4e2-28dc-4d8a-a8e7-bfc6830cb1f6/images/snf-test-db590326-0df1-464d-844f-a246d7ccac91.diskdump",
1368
"container_format": "bare",
1369
"owner": "c996c4e2-28dc-4d8a-a8e7-bfc6830cb1f6",
1370
"is_public": true,
1371
"deleted_at": "",
1372
"id": "6d8996b6-d4d3-4a47-9b90-fa858a87a2c3",
1373
"size": 550367232
1374
},
1375
{
1376
"status": "available",
1377
"name": "egi-accounting-portal",
1378
"checksum": "01501439f30196b78d136e2951831d1887c3253c68997ffb89e80bd64861a553",
1379
"created_at": "2013-09-13 10:50:17",
1380
"disk_format": "diskdump",
1381
"updated_at": "2013-09-13 10:50:17",
1382
"properties": {
1383
"partition_table": "msdos",
1384
"osfamily": "linux",
1385
"description": "Scientific Linux release 6.3 (Carbon)",
1386
"os": "scientificlinux",
1387
"root_partition": "1",
1388
"users": "root idiaz"
1389
},
1390
"location": "pithos://a3ff8143-4586-4910-aeb3-6e68f3d32c13/images/egi-accounting-portal.raw",
1391
"container_format": "bare",
1392
"owner": "a3ff8143-4586-4910-aeb3-6e68f3d32c13",
1393
"is_public": true,
1394
"deleted_at": "",
1395
"id": "15feb8ee-98b1-4a9f-b048-1f5b287d8bcc",
1396
"size": 45097156608
1397
},
1398
{
1399
"status": "available",
1400
"name": "ubuntu",
1401
"checksum": "3544e9198b4bec7b9a12f7729dd88faf38c0bff4aae50637c3322f688ff9ef7e",
1402
"created_at": "2013-08-21 10:04:30",
1403
"disk_format": "diskdump",
1404
"updated_at": "2013-08-21 10:04:30",
1405
"properties": {
1406
"partition_table": "msdos",
1407
"osfamily": "linux",
1408
"description": "Ubuntu 12.04.2 LTS",
1409
"os": "debian",
1410
"root_partition": "1",
1411
"users": "root"
1412
},
1413
"location": "pithos://ae458ae3-b92e-479f-8aa4-8c3e257c902a/images/ubuntu-201308211302.diskdump",
1414
"container_format": "bare",
1415
"owner": "ae458ae3-b92e-479f-8aa4-8c3e257c902a",
1416
"is_public": false,
1417
"deleted_at": "",
1418
"id": "ae09428c-e99a-477a-b703-224bbd7e7cb6",
1419
"size": 781930496
1420
},
1421
{
1422
"status": "available",
1423
"name": "BackTrack 5 R3",
1424
"checksum": "72dac278887c0411dfbc5c772a695a6ee6f3c88843c3df1673128dc83e309144",
1425
"created_at": "2013-08-05 01:33:25",
1426
"disk_format": "diskdump",
1427
"updated_at": "2013-08-05 01:33:25",
1428
"properties": {
1429
"partition_table": "msdos",
1430
"osfamily": "linux",
1431
"users": "root",
1432
"swap": "5:605",
1433
"os": "ubuntu",
1434
"root_partition": "1",
1435
"description": "Backtrack 5 R3 Gnome i386"
1436
},
1437
"location": "pithos://ddbaf544-9874-4007-833e-0547bd8c6bf1/images/BackTrack 5 R3-201308050412.diskdump",
1438
"container_format": "bare",
1439
"owner": "ddbaf544-9874-4007-833e-0547bd8c6bf1",
1440
"is_public": true,
1441
"deleted_at": "",
1442
"id": "9f82e379-b111-4f72-8fbf-4fb37aa5ccc9",
1443
"size": 11485241344
1444
},
1445
{
1446
"status": "available",
1447
"name": "Advcomparch@CSLab 2012-2013",
1448
"checksum": "8d9b9ebaefd3add69de8d834ff90957472f2df72ca4b013130fb0083ca0e7bdf",
1449
"created_at": "2013-04-23 12:39:31",
1450
"disk_format": "diskdump",
1451
"updated_at": "2013-04-23 12:39:31",
1452
"properties": {
1453
"partition_table": "msdos",
1454
"osfamily": "linux",
1455
"description": "Ubuntu 12.10",
1456
"os": "ubuntu",
1457
"root_partition": "1",
1458
"users": "user"
1459
},
1460
"location": "pithos://a504f156-7660-4793-a23f-ea0bbee748e9/images/advcomparch_cslab_ubuntu.diskdump",
1461
"container_format": "bare",
1462
"owner": "a504f156-7660-4793-a23f-ea0bbee748e9",
1463
"is_public": true,
1464
"deleted_at": "",
1465
"id": "505dcadb-d978-4f2b-ba68-02fc69fb50a8",
1466
"size": 5673857024
1467
},
1468
{
1469
"status": "available",
1470
"name": "ubuntu",
1471
"checksum": "958a674f7f97a9e7456ec6b4db41e125c9c8c2213f5192ba442ad88524517097",
1472
"created_at": "2013-04-23 09:58:27",
1473
"disk_format": "diskdump",
1474
"updated_at": "2013-04-23 09:58:27",
1475
"properties": {
1476
"partition_table": "msdos",
1477
"osfamily": "linux",
1478
"description": "Ubuntu 12.10",
1479
"os": "ubuntu",
1480
"root_partition": "1",
1481
"users": "user"
1482
},
1483
"location": "pithos://607bc20e-ae01-46ca-8a7d-d37b92e9908f/images/ubuntu-201304231229.diskdump",
1484
"container_format": "bare",
1485
"owner": "607bc20e-ae01-46ca-8a7d-d37b92e9908f",
1486
"is_public": true,
1487
"deleted_at": "",
1488
"id": "90554939-41c9-42e6-b654-1e167743c950",
1489
"size": 11523715072
1490
},
1491
{
1492
"status": "available",
1493
"name": "Kali Linux (former BackTrack)",
1494
"checksum": "e1fdc270c55f72f781e8ebba13820a5e2d8e02c8f3ef1d77faac8ec4be657b65",
1495
"created_at": "2013-04-13 09:32:02",
1496
"disk_format": "diskdump",
1497
"updated_at": "2013-04-13 09:32:02",
1498
"properties": {
1499
"partition_table": "msdos",
1500
"osfamily": "linux",
1501
"users": "root",
1502
"swap": "5:466",
1503
"os": "debian",
1504
"root_partition": "1",
1505
"description": "Kali Linux 1.0 - Former BackTrack5R3 (with update option)"
1506
},
1507
"location": "pithos://472ca914-0a88-4bc8-ab5e-72d49e5d51eb/images/Kali Linux (former BackTrack)-201304131215.diskdump",
1508
"container_format": "bare",
1509
"owner": "472ca914-0a88-4bc8-ab5e-72d49e5d51eb",
1510
"is_public": true,
1511
"deleted_at": "",
1512
"id": "c9e811fa-39a9-4d13-8a6f-9102105801cb",
1513
"size": 7766769664
1514
},
1515
{
1516
"status": "available",
1517
"name": "BackTrack5R3",
1518
"checksum": "6ca2c0f28026c5a73d355b878281e54f475c8da2edb09b072e7d218a4ba84d4a",
1519
"created_at": "2013-04-11 22:59:24",
1520
"disk_format": "diskdump",
1521
"updated_at": "2013-04-11 22:59:24",
1522
"properties": {
1523
"partition_table": "msdos",
1524
"osfamily": "linux",
1525
"users": "root",
1526
"swap": "5:564",
1527
"os": "ubuntu",
1528
"root_partition": "1",
1529
"description": "BackTrack5R3 w/ SSH & Correct Locale"
1530
},
1531
"location": "pithos://472ca914-0a88-4bc8-ab5e-72d49e5d51eb/images/BackTrack5R3-201304120130.diskdump",
1532
"container_format": "bare",
1533
"owner": "472ca914-0a88-4bc8-ab5e-72d49e5d51eb",
1534
"is_public": true,
1535
"deleted_at": "",
1536
"id": "e5a74e94-890b-44cc-8951-0786eeef7140",
1537
"size": 11783667712
1538
},
1539
{
1540
"status": "available",
1541
"name": "Kali-Linux-Gnome-amd64",
1542
"checksum": "cd4aa49026f4fb791442243e1429239c7e5a0027d83aecf380c41b8fee7bd804",
1543
"created_at": "2013-04-09 14:04:33",
1544
"disk_format": "diskdump",
1545
"updated_at": "2013-04-09 14:04:33",
1546
"properties": {
1547
"partition_table": "msdos",
1548
"osfamily": "linux",
1549
"users": "root",
1550
"swap": "5:466",
1551
"os": "debian",
... This diff was truncated because it exceeds the maximum size that can be displayed.

Also available in: Unified diff