~curtin-dev/curtin/trunk

« back to all changes in this revision

Viewing changes to examples/tests/basic.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
 
        model: QEMU HARDDISK
9
 
        path: /dev/vdb
10
 
        name: main_disk_with_in/\&valid@#dname
11
 
        wipe: superblock
12
 
        grub_device: true
13
 
      - id: sda1
14
 
        type: partition
15
 
        number: 1
16
 
        size: 3GB
17
 
        device: sda
18
 
        flag: boot
19
 
      - id: sda2
20
 
        type: partition
21
 
        number: 2
22
 
        size: 1GB
23
 
        device: sda
24
 
      - id: sda1_root
25
 
        type: format
26
 
        fstype: ext4
27
 
        volume: sda1
28
 
        label: 'cloudimg-rootfs'
29
 
      - id: sda2_home
30
 
        type: format
31
 
        fstype: ext4
32
 
        volume: sda2
33
 
      - id: sda1_mount
34
 
        type: mount
35
 
        path: /
36
 
        device: sda1_root
37
 
      - id: sda2_mount
38
 
        type: mount
39
 
        path: /home
40
 
        device: sda2_home
41
 
      - id: sparedisk_id
42
 
        type: disk
43
 
        path: /dev/vdc
44
 
        name: sparedisk
45
 
        wipe: superblock
46
 
      - id: sparedisk_fat_fmt_id
47
 
        type: format
48
 
        fstype: fat32
49
 
        volume: sparedisk_id
50
 
      - id: btrfs_disk_id
51
 
        type: disk
52
 
        path: /dev/vdd
53
 
        name: btrfs_volume
54
 
        wipe: superblock
55
 
      - id: btrfs_disk_fmt_id
56
 
        type: format
57
 
        fstype: btrfs
58
 
        volume: btrfs_disk_id
59
 
      - id: btrfs_disk_mnt_id
60
 
        type: mount
61
 
        path: /btrfs
62
 
        options: 'defaults,noatime'
63
 
        device: btrfs_disk_fmt_id
64
 
      - id: pnum_disk
65
 
        type: disk
66
 
        path: /dev/vde
67
 
        name: pnum_disk
68
 
        wipe: superblock
69
 
        ptable: gpt
70
 
      - id: pnum_disk_p1
71
 
        type: partition
72
 
        number: 1
73
 
        size: 1GB
74
 
        device: pnum_disk
75
 
      - id: pnum_disk_p2
76
 
        type: partition
77
 
        number: 10
78
 
        size: 1GB
79
 
        device: pnum_disk