Update Fedora to 43

This commit is contained in:
2025-12-28 04:04:27 +01:00
parent 232ab244ca
commit 2be6117aac
2 changed files with 4 additions and 4 deletions

View File

@@ -25,7 +25,7 @@ Below is a list of supported distributions:
| debian11 | Debian 11 (Bullseye) | | debian11 | Debian 11 (Bullseye) |
| debian12 | Debian 12 (Bookworm) | | debian12 | Debian 12 (Bookworm) |
| debian13 | Debian 13 (Trixie) | | debian13 | Debian 13 (Trixie) |
| fedora | Fedora 42 | | fedora | Fedora 43 |
| rhel8 | Red Hat Enterprise Linux 8 | | rhel8 | Red Hat Enterprise Linux 8 |
| rhel9 | Red Hat Enterprise Linux 9 | | rhel9 | Red Hat Enterprise Linux 9 |
| rhel10 | Red Hat Enterprise Linux 10 | | rhel10 | Red Hat Enterprise Linux 10 |

View File

@@ -1,5 +1,5 @@
--- ---
- name: Bootstrap Fedora 42 - name: Bootstrap Fedora 43
vars: vars:
bootstrap_fedora_extra: >- bootstrap_fedora_extra: >-
{{ {{
@@ -10,12 +10,12 @@
ansible.builtin.command: "{{ item }}" ansible.builtin.command: "{{ item }}"
loop: 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 --installroot=/mnt --setopt=install_weak_deps=False
groupinstall -y critical-path-base core groupinstall -y critical-path-base core
- ln -sf /run/NetworkManager/resolv.conf /mnt/etc/resolv.conf - 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 }} install -y {{ bootstrap_fedora_extra }}
- arch-chroot /mnt dnf reinstall -y kernel-core - arch-chroot /mnt dnf reinstall -y kernel-core
register: bootstrap_result register: bootstrap_result