packages, move base-devel to general in the task section, indent all the lists.

This commit is contained in:
2026-08-05 12:22:01 -07:00
parent da9c34a9da
commit f83fe61296
+42 -41
View File
@@ -40,37 +40,38 @@
- name: General | Software | Packages | Install Software
package:
name:
- bash
- sudo
- nmap
- "{{ neofetch }}"
- "{{ sshfs }}"
- "{{ locate }}"
- zsh
- "{{ opensshd }}"
- "{{ tar }}"
- curl
- at
- gcc
- vim
- "{{ cron }}"
- "{{ encfs }}"
- rsync
- "{{ iftop }}"
- "{{ nethogs }}"
- "{{ ntp_server }}"
- "{{ dig }}"
- "{{ tmux }}"
- "{{ sendmail }}"
- "{{ sendmail_mta }}"
- "{{ ca_certificates }}"
- bash
- sudo
- nmap
- "{{ neofetch }}"
- "{{ sshfs }}"
- "{{ locate }}"
- zsh
- "{{ opensshd }}"
- "{{ tar }}"
- curl
- at
- gcc
- vim
- "{{ cron }}"
- "{{ encfs }}"
- rsync
- "{{ iftop }}"
- "{{ nethogs }}"
- "{{ ntp_server }}"
- "{{ dig }}"
- "{{ tmux }}"
- "{{ base_devel }}"
- "{{ sendmail }}"
- "{{ sendmail_mta }}"
- "{{ ca_certificates }}"
state: present
- name: General | Software | Packages | Install Software (DEV)
package:
name:
- "{{ microcode_amd }}"
- "{{ microcode_intel }}"
- "{{ microcode_amd }}"
- "{{ microcode_intel }}"
state: present
when: branch == "dev"
ignore_errors: yes
@@ -78,10 +79,10 @@
- name: General | Software | Packages | Add Generic Kernel + Tools (Ubuntu)
package:
name:
- linux-image-generic
- linux-headers-generic
- linux-tools-generic
- linux-tools-common
- linux-image-generic
- linux-headers-generic
- linux-tools-generic
- linux-tools-common
state: present
when: ansible_distribution == "Ubuntu"
ignore_errors: yes
@@ -89,8 +90,8 @@
- name: General | Software | Packages | Add Generic Kernel + Headers (Debian)
package:
name:
- linux-image-amd64
- linux-headers-amd64
- linux-image-amd64
- linux-headers-amd64
state: present
when: ansible_distribution == "Debian"
ignore_errors: yes
@@ -104,8 +105,8 @@
- name: General | Software | Packages | Install "Bloat" (Looking at you, Arch Base)
package:
name:
- which
- "{{ cron }}"
- which
- "{{ cron }}"
state: present
when: ansible_distribution == "Archlinux"
@@ -124,17 +125,17 @@
- name: General | Software | Packages | Update Software (Disabled)
package:
name:
- ansible
- git
- ansible
- git
state: latest
when: 1 == 0
- name: General | Software | Packages | Remove Software
package:
name:
- cowsay # Sorry ;)
- chromium
- chromium-browser
- cowsay # Sorry ;)
- chromium
- chromium-browser
state: absent
# Ubuntu still uses snap for critical components like GNOME, must keep.
@@ -150,7 +151,7 @@
- name: General | Software | Packages | Remove Snap (Besides Ubuntu)
package:
name:
- snapd
- snapd
state: absent
when: ansible_distribution != "Ubuntu"
ignore_errors: yes
@@ -158,7 +159,7 @@
- name: General | Software | Packages | Other Debian Packages
package:
name:
- usbutils
- usbutils
state: present
when: ansible_distribution in ("Debian")
ignore_errors: yes