Minor Enhancements (#33)

* Add some nice to have packages in case custom or HW kernels go bad.

* Updates to the usage.

* Add a comment for the closure of the program.
This commit is contained in:
2022-12-03 16:12:46 -06:00
committed by GitHub
parent e39aeb20e7
commit c9abdaf8a2
2 changed files with 20 additions and 3 deletions

View File

@ -61,7 +61,18 @@
when: branch == "dev"
ignore_errors: yes
- name: General | Software | Services | Install CROND (Looking at you, Fedora+Mobian)
- name: General | Software | Packages | Add Generic Kernel + Tools (Ubuntu)
package:
name:
- linux-image-generic
- linux-headers-generic
- linux-tools-generic
- linux-tools-common
state: present
when: ansible_distribution == "Ubuntu"
ignore_errors: yes
- name: General | Software | Services | Install CROND (Looking at you, Fedora)
package:
name: "{{ cron }}"
state: present