~curtin-dev/curtin/trunk

« back to all changes in this revision

Viewing changes to examples/partitioning-demos/custom-partitioning-demo-raid.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
 
partitioning_commands:
2
 
 builtin: curtin block-meta custom
3
 
 
4
 
storage:
5
 
    version: 1
6
 
    config:
7
 
      - id: sda
8
 
        type: disk
9
 
        ptable: msdos
10
 
        model: QEMU HARDDISK
11
 
        serial: QM00002
12
 
      - id: sdb
13
 
        type: disk
14
 
        ptable: msdos
15
 
        model: QEMU HARDDISK
16
 
        serial: QM00003
17
 
      - id: sdc
18
 
        type: disk
19
 
        ptable: msdos
20
 
        model: QEMU HARDDISK
21
 
        serial: QM00004
22
 
      - id: sdd
23
 
        type: disk
24
 
        ptable: msdos
25
 
        model: QEMU HARDDISK
26
 
        serial: QM00005
27
 
      - id: sda1
28
 
        type: partition
29
 
        number: 1
30
 
        size: 8GB
31
 
        device: sda
32
 
        flag: boot
33
 
      - id: sdb1
34
 
        type: partition
35
 
        number: 1
36
 
        size: 1GB
37
 
        device: sdb
38
 
        flag: raid
39
 
      - id: sdc1
40
 
        type: partition
41
 
        number: 1
42
 
        size: 1GB
43
 
        device: sdc
44
 
        flag: raid
45
 
      - id: sdd1
46
 
        type: partition
47
 
        number: 1
48
 
        size: 1GB
49
 
        device: sdc
50
 
        flag: raid
51
 
      - id: md0
52
 
        type: raid
53
 
        name: md0
54
 
        raidlevel: 1
55
 
        devices:
56
 
          - sdb1
57
 
          - sdc1
58
 
        spare_devices:
59
 
          - sdd1
60
 
      - id: sda1_root
61
 
        type: format
62
 
        fstype: ext4
63
 
        volume: sda1
64
 
      - id: raid_storage
65
 
        type: format
66
 
        fstype: ext4
67
 
        volume: md0
68
 
      - id: sda1_mount
69
 
        type: mount
70
 
        path: /
71
 
        device: sda1_root
72
 
      - id: raid_mount
73
 
        type: mount
74
 
        path: /media/storage
75
 
        device: raid_storage