From 2be6117aac07f1c1266679f9030218f3513af0fd Mon Sep 17 00:00:00 2001 From: Sandwich Date: Sun, 28 Dec 2025 04:04:27 +0100 Subject: [PATCH] Update Fedora to 43 --- README.md | 2 +- roles/bootstrap/tasks/fedora.yml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 76e25f8..e490067 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ Below is a list of supported distributions: | debian11 | Debian 11 (Bullseye) | | debian12 | Debian 12 (Bookworm) | | debian13 | Debian 13 (Trixie) | -| fedora | Fedora 42 | +| fedora | Fedora 43 | | rhel8 | Red Hat Enterprise Linux 8 | | rhel9 | Red Hat Enterprise Linux 9 | | rhel10 | Red Hat Enterprise Linux 10 | diff --git a/roles/bootstrap/tasks/fedora.yml b/roles/bootstrap/tasks/fedora.yml index 24cfa26..f1b132d 100644 --- a/roles/bootstrap/tasks/fedora.yml +++ b/roles/bootstrap/tasks/fedora.yml @@ -1,5 +1,5 @@ --- -- name: Bootstrap Fedora 42 +- name: Bootstrap Fedora 43 vars: bootstrap_fedora_extra: >- {{ @@ -10,12 +10,12 @@ ansible.builtin.command: "{{ item }}" loop: - >- - dnf --releasever=42 --best --repo=fedora --repo=fedora-updates + dnf --releasever=43 --best --repo=fedora --repo=fedora-updates --installroot=/mnt --setopt=install_weak_deps=False groupinstall -y critical-path-base core - ln -sf /run/NetworkManager/resolv.conf /mnt/etc/resolv.conf - >- - arch-chroot /mnt dnf --releasever=42 --setopt=install_weak_deps=False + arch-chroot /mnt dnf --releasever=43 --setopt=install_weak_deps=False install -y {{ bootstrap_fedora_extra }} - arch-chroot /mnt dnf reinstall -y kernel-core register: bootstrap_result