~curtin-dev/curtin/trunk

« back to all changes in this revision

Viewing changes to examples/tests/basic_scsi.yaml

  • Committer: Scott Moser
  • Date: 2017-12-20 17:33:03 UTC
  • Revision ID: smoser@ubuntu.com-20171220173303-29gha5qb8wpqrd40
README: Mention move of revision control to git.

curtin development has moved its revision control to git.
It is available at
  https://code.launchpad.net/curtin

Clone with
  git clone https://git.launchpad.net/curtin
or
  git clone git+ssh://git.launchpad.net/curtin

For more information see
  http://curtin.readthedocs.io/en/latest/topics/development.html

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
showtrace: true
2
 
storage:
3
 
    version: 1
4
 
    config:
5
 
      - id: sda
6
 
        type: disk
7
 
        ptable: msdos
8
 
        wwn: '0x39cc071e72c64cc4'
9
 
        name: main_disk_with_in/\&valid@#dname
10
 
        wipe: superblock
11
 
        grub_device: true
12
 
      - id: sda1
13
 
        type: partition
14
 
        number: 1
15
 
        size: 3GB
16
 
        device: sda
17
 
        flag: boot
18
 
      - id: sda2
19
 
        type: partition
20
 
        number: 2
21
 
        size: 1GB
22
 
        device: sda
23
 
      - id: sda1_root
24
 
        type: format
25
 
        fstype: ext4
26
 
        volume: sda1
27
 
      - id: sda2_home
28
 
        type: format
29
 
        fstype: ext4
30
 
        volume: sda2
31
 
      - id: sda1_mount
32
 
        type: mount
33
 
        path: /
34
 
        device: sda1_root
35
 
      - id: sda2_mount
36
 
        type: mount
37
 
        path: /home
38
 
        device: sda2_home
39
 
      - id: sparedisk_id
40
 
        type: disk
41
 
        wwn: '0x080258d13ea95ae5'
42
 
        name: sparedisk
43
 
        wipe: superblock
44
 
      - id: btrfs_disk_id
45
 
        type: disk
46
 
        wwn: '0x22dc58dc023c7008'
47
 
        name: btrfs_volume
48
 
        wipe: superblock
49
 
      - id: btrfs_disk_fmt_id
50
 
        type: format
51
 
        fstype: btrfs
52
 
        volume: btrfs_disk_id
53
 
      - id: btrfs_disk_mnt_id
54
 
        type: mount
55
 
        path: /btrfs
56
 
        options: 'defaults,noatime'
57
 
        device: btrfs_disk_fmt_id
58
 
      - id: pnum_disk
59
 
        type: disk
60
 
        wwn: '0x550a270c3a5811c5'
61
 
        name: pnum_disk
62
 
        wipe: superblock
63
 
        ptable: gpt
64
 
      - id: pnum_disk_p1
65
 
        type: partition
66
 
        number: 1
67
 
        size: 1GB
68
 
        device: pnum_disk
69
 
      - id: pnum_disk_p2
70
 
        type: partition
71
 
        number: 10
72
 
        size: 1GB
73
 
        device: pnum_disk