diff options
Diffstat (limited to 'host_vars/ubuntu-desktop-iso.local.yml.example')
| -rw-r--r-- | host_vars/ubuntu-desktop-iso.local.yml.example | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/host_vars/ubuntu-desktop-iso.local.yml.example b/host_vars/ubuntu-desktop-iso.local.yml.example new file mode 100644 index 0000000..0376c61 --- /dev/null +++ b/host_vars/ubuntu-desktop-iso.local.yml.example @@ -0,0 +1,41 @@ +--- +hostname: "desktop.local" +partition_disk: "/dev/nvme0n1" +partition_wipe: true +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 }}p1" + 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 }}p2" + mount_path: "none" +partition_root: + num: 3 + name: "ubuntu-root" + part_start: "9.0GiB" + part_end: "109.0GiB" + fstype: "ext4" + dev: "{{ partition_disk }}p3" + mount_path: "/mnt" +partition_extras: + - num: 4 + name: "home" + part_start: "109.0GiB" + part_end: "100%" + fstype: "ext4" + dev: "{{ partition_disk }}p4" + mount_path: "/mnt/home" +configure_playbook_dir: "../ansible-distro-configure" |
