summaryrefslogtreecommitdiffstats
path: root/host_vars/raspberryiso.local.yml.example
blob: 6a9899344431121564dcc5f3c9f10a3722d90b07 (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
---
hostname: "rpi5.local"
partition_disk: "/dev/mmcblk0"
partition_wipe: true
partition_boot:
  num: 1
  name: "boot"
  flags: [boot, esp]
  part_start: "0%"
  part_end: "200MiB"
  fstype: "vfat"
  fstype_opts: "-F 32 -n boot"
  dev: "{{ partition_disk }}p1"
  mount_path: "/mnt/boot/firmware"
  fstab_opts: "defaults,noatime"
partition_root:
  num: 2
  name: "root"
  part_start: "200MiB"
  part_end: "100%"
  fstype: "ext4"
  dev: "{{ partition_disk }}p2"
  mount_path: "/mnt"
partition_extras: []
configure_playbook_dir: "../ansible-distro-configure"