Add missing tags from main tasks

This commit is contained in:
Joshua Boniface 2024-11-03 15:40:29 -05:00
parent e4a0e0be7c
commit fe050509c0
1 changed files with 9 additions and 0 deletions

View File

@ -303,18 +303,21 @@
- prometheus-node-exporter - prometheus-node-exporter
- prometheus-process-exporter - prometheus-process-exporter
when: enable_prometheus_exporters is defined and enable_prometheus_exporters when: enable_prometheus_exporters is defined and enable_prometheus_exporters
tags: base-packages
- name: install Intel-specific microcode package - name: install Intel-specific microcode package
apt: apt:
name: name:
- intel-microcode - intel-microcode
when: "'GenuineIntel' in ansible_processor" when: "'GenuineIntel' in ansible_processor"
tags: base-packages
- name: install AMD-specific microcode package - name: install AMD-specific microcode package
apt: apt:
name: name:
- amd64-microcode - amd64-microcode
when: "'AuthenticAMD' in ansible_processor" when: "'AuthenticAMD' in ansible_processor"
tags: base-packages
- name: install cleanup scripts - name: install cleanup scripts
template: template:
@ -443,6 +446,7 @@
file: file:
state: directory state: directory
dest: "/usr/share/grub-pvc" dest: "/usr/share/grub-pvc"
tags: base-bootloader
- name: install PVC grub style - name: install PVC grub style
copy: copy:
@ -451,6 +455,7 @@
with_items: with_items:
- background.png - background.png
- theme.txt - theme.txt
tags: base-bootloader
- name: install GRUB configuration - name: install GRUB configuration
template: template:
@ -459,6 +464,7 @@
notify: notify:
- update grub - update grub
- regenerate uefi entries - regenerate uefi entries
tags: base-bootloader
# Plymouth theme # Plymouth theme
- name: install PVC Plymouth theme archive - name: install PVC Plymouth theme archive
@ -468,14 +474,17 @@
creates: "/usr/share/plymouth/themes/pvc" creates: "/usr/share/plymouth/themes/pvc"
owner: root owner: root
group: root group: root
tags: base-bootloader
- name: install PVC Plymouth background file - name: install PVC Plymouth background file
copy: copy:
src: "usr/share/grub-pvc/background.png" src: "usr/share/grub-pvc/background.png"
dest: "/usr/share/plymouth/themes/pvc/background-tile.png" dest: "/usr/share/plymouth/themes/pvc/background-tile.png"
tags: base-bootloader
- name: set PVC Plymouth theme as the default - name: set PVC Plymouth theme as the default
command: plymouth-set-default-theme -R pvc command: plymouth-set-default-theme -R pvc
tags: base-bootloader
# syslog # syslog
- name: install rsyslog and logrotate configs - name: install rsyslog and logrotate configs