Move mkinitcpio/modprobe/sysctl configuration to base setup task

This commit is contained in:
Sonny Bakker 2024-09-09 09:09:30 +02:00
parent fec111584c
commit ebb8f8c2c2
12 changed files with 185 additions and 250 deletions

View file

@ -65,3 +65,131 @@
systemd:
name: fstrim.timer
enabled: true
- name: remove the sysctl.d directory
become: true
file:
path: /etc/sysctl.d
state: absent
- name: recreate the sysctl.d directory
become: true
file:
path: /etc/sysctl.d
state: directory
mode: 755
- name: copy sysctl files
become: true
template:
src: '{{ item.src }}'
dest: '{{ item.dest }}'
loop:
- {
src: 'templates/{{ platform }}/sysctl/99-sysrq.conf.j2',
dest: '/etc/sysctl.d/99-sysrq.conf'
}
- {
src: 'templates/{{ platform }}/sysctl/98-forward.conf.j2',
dest: '/etc/sysctl.d/98-foward.conf'
}
notify: reload sysctl configuration
- name: remove the modprobe.d directory
become: true
file:
path: /etc/modprobe.d
state: absent
- name: recreate the modprobe.d directory
become: true
file:
path: /etc/modprobe.d
state: directory
mode: 755
- name: copy modprobe configuration files
become: true
template:
src: '{{ item.src }}'
dest: '{{ item.dest }}'
loop: '{{ modprobe_templates }}'
when: modprobe_templates
- name: copy kernel parameters template
become: true
template:
src: 'templates/{{ platform }}/cmdline.j2'
dest: '/etc/kernel/cmdline'
- name: remove the mkinitcpio directories
become: true
file:
path: '{{ item }}'
state: absent
loop:
- /etc/mkinitcpio.conf.d
- /etc/mkinitcpio.d
- name: recreate the mkinitcpio directories
become: true
file:
path: '{{ item }}'
state: directory
mode: 755
loop:
- /etc/mkinitcpio.conf.d
- /etc/mkinitcpio.d
- name: copy mkinitcpio configuration files
become: true
template:
src: '{{ item.src }}'
dest: '{{ item.dest }}'
loop: '{{ mkinitcpio_templates }}'
when: mkinitcpio_templates
- name: regenerate initramfs images
become: true
command: 'mkinitcpio --allpresets'
register: mkinitcpio_stats
- name: log mkinitcpio stdout
debug:
var: mkinitcpio_stats.stdout_lines
- name: create a Linux UEFI boot entry
become: true
command: efibootmgr \
--create \
--disk '{{ boot_configuration.disk }}' \
--part '{{ boot_configuration.partition }}' \
--label 'Arch Linux' \
--loader '\EFI\Linux\linux.efi'\
--unicode
--index 0
register: efi_linux_stats
when: register_uefi_entries
- name: log efibootmgr stdout
debug:
var: efi_linux_stats.stdout_lines
when: register_uefi_entries
- name: create a Linux LTS UEFI boot entry
become: true
command: efibootmgr \
--create \
--disk '{{ boot_configuration.disk }}' \
--part '{{ boot_configuration.partition }}' \
--label 'Arch Linux LTS' \
--loader '\EFI\Linux\linux-lts.efi'\
--unicode
--index 1
register: efi_linux_lts_stats
when: register_uefi_entries
- name: log efibootmgr LTS stdout
debug:
var: efi_linux_lts_stats.stdout_lines
when: register_uefi_entries