Skip to content
Snippets Groups Projects
Commit 535bc648 authored by Sven-Hendrik Haase's avatar Sven-Hendrik Haase
Browse files

Fix packer build

- Switch to zstd as new grub now supports btrfs and zstd.
- Go back to good old sgdisk as ansible's parted is pretty buggy.
- Upgrade bootstrap version.
- Remove base-devel to decrease image size and we don't really need it everywhere.
parent 881f0b40
No related branches found
No related tags found
No related merge requests found
......@@ -9,4 +9,4 @@
roles:
- install_arch
vars:
- bootstrap_version: "2019.05.02"
- bootstrap_version: "2019.08.01"
......@@ -8,26 +8,24 @@
fail: msg="Not running in Hetzner rescue system!"
when: "'Hetzner Rescue' not in motd_contents.stdout"
- name: partition and format the disks (btrfs)
command: mkfs.btrfs -f -L rootfs -d {{ raid_level|default(raid1) }} {{ system_disks|join(' ') }}
when: filesystem == "btrfs" and system_disks|length == 2
- name: partition and format the disks (btrfs)
filesystem: dev="{{ system_disks[0] }}" fstype=btrfs force=yes opts="-L rootfs"
when: filesystem == "btrfs" and system_disks|length == 1
- name: create BIOS boot partitions
parted: device={{ item }} number=1 state=present part_end=10MiB flags=[boot]
when: filesystem == "ext4"
- name: create GRUB embed partitions
command: sgdisk -g --clear -n 1:0:+10M {{ item }} -c 1:boot -t 1:ef02
with_items:
- "{{ system_disks }}"
- name: create RAID partitions
parted: device={{ item }} number=2 state=present flags=[raid]
when: filesystem == "ext4"
- name: create root partitions
command: sgdisk -n 2:0:0 {{ item }} -c 2:root
with_items:
- "{{ system_disks }}"
- name: partition and format the disks (btrfs)
command: mkfs.btrfs -f -L root -d {{ raid_level|default(raid1) }} /dev/sda2 /dev/sdb2
when: filesystem == "btrfs" and system_disks|length == 2
- name: partition and format the disks (btrfs)
command: mkfs.btrfs -f -L root /dev/sda2
when: filesystem == "btrfs" and system_disks|length == 1
- name: create MDADM array
command: mdadm --create --level=1 --raid-devices=2 --run /dev/md0 /dev/sda2 /dev/sdb2
when: filesystem == "ext4" and system_disks|length == 2
......@@ -37,7 +35,7 @@
when: filesystem == "ext4" and system_disks|length == 2
- name: mount the filesystem (btrfs)
mount: src="{{ system_disks[0] }}" path=/mnt fstype=btrfs state=mounted opts="compress=lzo"
mount: src="/dev/sda2" path=/mnt fstype=btrfs state=mounted opts="compress=zstd"
when: filesystem == "btrfs"
- name: mount the filesystem (ext4)
......@@ -91,7 +89,7 @@
when: "'AuthenticAMD' in ansible_facts['processor']"
- name: install arch base from bootstrap chroot
command: chroot /tmp/root.x86_64 pacstrap /mnt base base-devel btrfs-progs grub openssh python {{ ucode }} creates=/tmp/root.x86_64/mnt/bin
command: chroot /tmp/root.x86_64 pacstrap /mnt base btrfs-progs grub openssh python {{ ucode }} creates=/tmp/root.x86_64/mnt/bin
- name: mount /proc to new chroot
command: mount --rbind /proc /mnt/proc creates=/mnt/proc/uptime
......@@ -138,7 +136,7 @@
lineinfile:
path: /mnt/etc/default/grub
regexp: "^GRUB_CMDLINE_LINUX_DEFAULT="
line: "GRUB_CMDLINE_LINUX_DEFAULT=\"rootflags=compress=lzo\""
line: "GRUB_CMDLINE_LINUX_DEFAULT=\"rootflags=compress=zstd\""
when: filesystem == "btrfs"
- name: install grub
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment