blob: 62404b7740ee05ed635107385058c6a80c85160d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
---
hostname: "mac.local"
partition_disk: "/dev/sda"
partition_wipe: false
partition_boot:
num: 1
name: "boot"
flags: [boot, esp]
part_start: "0%"
part_end: "1.0GiB"
fstype: "vfat"
fstype_opts: "-F 32"
dev: "{{ partition_disk }}1"
mount_path: "/mnt/boot/efi"
fstab_opts: "defaults,nodev,nosuid,noexec,umask=0077"
partition_swap:
num: 2
name: "swap"
flags: [swap]
part_start: "1.0GiB"
part_end: "9.0GiB"
fstype: "ext4"
dev: "{{ partition_disk }}2"
mount_path: "none"
partition_root:
num: 4
name: "arch-root"
part_start: "59.0GiB"
part_end: "109.0GiB"
fstype: "ext4"
dev: "{{ partition_disk }}4"
mount_path: "/mnt"
partition_extras:
- num: 3
name: "ubuntu-root"
part_start: "9.0GiB"
part_end: "59.0GiB"
fstype: "ext4"
dev: "{{ partition_disk }}3"
- num: 5
name: "home"
part_start: "109.0GiB"
part_end: "100%"
fstype: "ext4"
dev: "{{ partition_disk }}4"
bootstrap_broadcom_wl: true
|