1
0
forked from finallycoffee/base

feat(bootstrap): add support for dnf/fedora

This commit is contained in:
transcaffeine 2025-04-21 14:57:13 +02:00
parent c9b2f61787
commit 83d223defa
Signed by untrusted user: transcaffeine
GPG Key ID: 03624C433676E465

View File

@ -4,7 +4,7 @@
become: "{{ target_host_become | default(true, false) }}" become: "{{ target_host_become | default(true, false) }}"
gather_facts: false gather_facts: false
pre_tasks: pre_tasks:
- name: Gather information about the target system - name: Gather information about the target system id
ansible.builtin.raw: "cat /etc/os-release | grep '^ID=' | cut -d '=' -f2" ansible.builtin.raw: "cat /etc/os-release | grep '^ID=' | cut -d '=' -f2"
register: target_host_os_info register: target_host_os_info
check_mode: false check_mode: false
@ -13,6 +13,16 @@
ansible.builtin.set_fact: ansible.builtin.set_fact:
target_host_system_id: "{{ target_host_os_info.stdout_lines | first | trim }}" target_host_system_id: "{{ target_host_os_info.stdout_lines | first | trim }}"
delegate_to: localhost delegate_to: localhost
- name: Gather information about the target system version
ansible.builtin.raw: "cat /etc/os-release | grep '^VERSION_ID=' | cut -d '=' -f2"
register: target_host_os_info_version
check_mode: false
changed_when: false
- name: Set /etc/os-release system version id
ansible.builtin.set_fact:
target_host_system_version_id: "{{ target_host_os_info_version.stdout_lines | first | trim }}"
delegate_to: localhost
tasks: tasks:
- name: Ensure apt bootstrap packages are installed - name: Ensure apt bootstrap packages are installed
ansible.builtin.raw: "apt install {{ apt_bootstrap_packages | join(' ') }}" ansible.builtin.raw: "apt install {{ apt_bootstrap_packages | join(' ') }}"
@ -21,6 +31,22 @@
changed_when: changed_when:
- "'0 upgraded' not in target_host_apt_info.stdout_lines | last" - "'0 upgraded' not in target_host_apt_info.stdout_lines | last"
- "'0 newly installed' not in target_host_apt_info.stdout_lines | last" - "'0 newly installed' not in target_host_apt_info.stdout_lines | last"
- name: Ensure dnf < 4 bootstrap packages are installed
ansible.builtin.raw: "dnf install --assumeyes {{ dnf4_bootstrap_packages | join(' ') }}"
register: target_host_dnf_info
when:
- target_host_system_id in targets_using_dnf4.keys()
- target_host_system_version_id | int < targets_using_dnf4[target_host_system_id]
changed_when:
- "(target_host_dnf_info.stdout_lines | last) != 'Nothing to do.'"
- name: Ensure dnf5 bootstrap packages are installed
ansible.builtin.raw: "dnf install --assumeyes {{ dnf5_bootstrap_packages | join(' ') }}"
register: target_host_dnf_info
when:
- target_host_system_id in targets_using_dnf5.keys()
- target_host_system_version_id | int >= targets_using_dnf5[target_host_system_id]
changed_when:
- "(target_host_dnf_info.stdout_lines | last) != 'Nothing to do.'"
- name: Sort hosts into os-specific groups - name: Sort hosts into os-specific groups
ansible.builtin.group_by: ansible.builtin.group_by:
key: >-2 key: >-2
@ -38,3 +64,15 @@
apt_bootstrap_packages: apt_bootstrap_packages:
- python3 - python3
- python3-apt - python3-apt
# default package manager is dnf5 since fedora 41
# https://fedoraproject.org/wiki/Changes/SwitchToDnf5#Current_status
targets_using_dnf4:
fedora: 41
targets_using_dnf5:
fedora: 41
dnf4_bootstrap_packages:
- python3
- python3-dnf
- python3-libdnf
dnf5_bootstrap_packages:
- python3-libdnf5