summaryrefslogtreecommitdiffstats
path: root/host_vars/rpi5-iso.local.yml.example
diff options
context:
space:
mode:
authorAhmed Abdelhalim <[email protected]>2026-04-23 00:15:45 +0200
committerAhmed Abdelhalim <[email protected]>2026-04-23 00:15:45 +0200
commit30eb7447283d6f8a59f081a5b75a8ced3590b44e (patch)
tree2bd99435404b9cbb21abd147c75b54d167e89ee9 /host_vars/rpi5-iso.local.yml.example
parent6d5b3d5f42ac72e220560e9d3971ed8a9bbb642b (diff)
Refactor inventory
Diffstat (limited to 'host_vars/rpi5-iso.local.yml.example')
-rw-r--r--host_vars/rpi5-iso.local.yml.example25
1 files changed, 25 insertions, 0 deletions
diff --git a/host_vars/rpi5-iso.local.yml.example b/host_vars/rpi5-iso.local.yml.example
new file mode 100644
index 0000000..6a98993
--- /dev/null
+++ b/host_vars/rpi5-iso.local.yml.example
@@ -0,0 +1,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"