This commit is contained in:
Christoph 2021-06-02 23:42:04 +02:00
parent 140d226316
commit 67fa63ccb5
3 changed files with 32 additions and 7 deletions

View File

@ -557,10 +557,13 @@ microcode_intel_package:
microcode_amd_package: microcode_amd_package:
- amd64-microcode - amd64-microcode
firmware_packages: firmware_packages_ubuntu:
- linux-firmware
firmware_packages_debian:
- firmware-linux - firmware-linux
firmware_non_free_packages: firmware_non_free_packages_debian:
- firmware-linux-nonfree - firmware-linux-nonfree
apt_install_state: latest apt_install_state: latest
@ -1348,7 +1351,9 @@ sudoers_server_file_user_privileges: []
sudoers_server_file_group_privileges: [] sudoers_server_file_group_privileges: []
# ========================================
# ========================================
# ========================================
# --- # ---

View File

@ -228,22 +228,36 @@
# Firmware # Firmware
# --- # ---
- name: (apt.yml) Install Firmware packages - name: (apt.yml) Install Firmware packages (Ubuntu)
apt: apt:
name: "{{ firmware_non_free_packages }}" name: "{{ firmware_packages_ubuntu }}"
state: present state: present
default_release: "{{ ansible_distribution_release }}" default_release: "{{ ansible_distribution_release }}"
when:
- ansible_facts['distribution'] == "Ubuntu"
tags:
- apt-initial-install
- apt-firmware
- name: (apt.yml) Install Firmware packages (Debian)
apt:
name: "{{ firmware_packages_debian }}"
state: present
default_release: "{{ ansible_distribution_release }}"
when:
- ansible_facts['distribution'] == "Debian"
tags: tags:
- apt-initial-install - apt-initial-install
- apt-firmware - apt-firmware
- name: (apt.yml) Install non-free Firmware packages - name: (apt.yml) Install non-free Firmware packages (Debian)
apt: apt:
name: "{{ firmware_non_free_packages }}" name: "{{ firmware_non_free_packages_debian }}"
state: present state: present
default_release: "{{ ansible_distribution_release }}" default_release: "{{ ansible_distribution_release }}"
when: when:
- ansible_facts['distribution'] == "Debian"
- apt_debian_contrib_nonfree_enable - apt_debian_contrib_nonfree_enable
tags: tags:
- apt-initial-install - apt-initial-install

View File

@ -143,6 +143,12 @@
- samba-shares - samba-shares
#- import_tasks: mount_samba_shares.yml
# when: "groups['client_pc']|string is search(inventory_hostname)"
# tags:
# - samba-shares
# tags supported system-user-systemfiles.yml: # tags supported system-user-systemfiles.yml:
# #
# profile # profile