summaryrefslogtreecommitdiffstats
path: root/host_vars/mac-archiso.local.yml.example
diff options
context:
space:
mode:
authorAhmed Abdelhalim <[email protected]>2026-03-04 15:31:16 +0100
committerAhmed Abdelhalim <[email protected]>2026-03-04 15:36:55 +0100
commit18fae2f9a5dd4a877b557818552844ea00ec30d2 (patch)
treedc91fcbc77634ff71495c7904a503a00158fae8a /host_vars/mac-archiso.local.yml.example
parent13c88e0dff89bfdda5a02c647653cce37b083e16 (diff)
Rename mac host names
Diffstat (limited to 'host_vars/mac-archiso.local.yml.example')
-rw-r--r--host_vars/mac-archiso.local.yml.example47
1 files changed, 0 insertions, 47 deletions
diff --git a/host_vars/mac-archiso.local.yml.example b/host_vars/mac-archiso.local.yml.example
deleted file mode 100644
index 749b6a8..0000000
--- a/host_vars/mac-archiso.local.yml.example
+++ /dev/null
@@ -1,47 +0,0 @@
----
-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_mac: true
-configure_playbook_dir: "../ansible-distro-configure"