Commit bbdb76a 1 parent 982b251 commit bbdb76a Copy full SHA for bbdb76a
File tree 1 file changed +9
-9
lines changed
crates/provisioning/tests
1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ strategy name="whole_disk" summary="Wipe and use an entire disk" {
4
4
// The result is stored in "root_disk" (disk=..)
5
5
find-disk "root_disk" {
6
6
constraints {
7
- min (GB)60
7
+ min (GiB)30
8
8
}
9
9
}
10
10
@@ -14,26 +14,26 @@ strategy name="whole_disk" summary="Wipe and use an entire disk" {
14
14
// Create the ESP
15
15
create-partition disk="root_disk" role="boot" id="esp" {
16
16
constraints {
17
- min (GIB )1
18
- max (GIB )2
17
+ min (GiB )1
18
+ max (GiB )2
19
19
}
20
20
type (GUID)"efi-system-partition"
21
21
}
22
22
23
23
// Create xbootldr
24
24
create-partition disk="root_disk" role="extended-boot" id="xbootldr" {
25
25
constraints {
26
- min (GIB )2
27
- max (GIB )4
26
+ min (GiB )2
27
+ max (GiB )4
28
28
}
29
29
type (GUID) "linux-extended-boot"
30
30
}
31
31
32
32
// Create a partition for rootfs
33
33
create-partition disk="root_disk" id="root" role="root" {
34
34
constraints {
35
- min (GIB )30
36
- max (GIB )120
35
+ min (GiB )30
36
+ max (GiB )120
37
37
}
38
38
}
39
39
@@ -47,8 +47,8 @@ strategy name="whole_disk_with_swap" inherits="whole_disk" \
47
47
// Create a swap partition in addition to the base strategy
48
48
create-partition disk="root_disk" id="swap" role="swap" {
49
49
constraints {
50
- min (GIB )4
51
- max (GIB )8
50
+ min (GiB )4
51
+ max (GiB )8
52
52
}
53
53
type (GUID)"linux-swap"
54
54
}
You can’t perform that action at this time.
0 commit comments