Install unattended-upgrades on desktops, minor package cleanup

This commit is contained in:
Salt 2022-07-11 11:13:11 -05:00
parent 5e962f54c7
commit f8b7c5ffad
3 changed files with 2 additions and 3 deletions

View File

@ -36,8 +36,6 @@
- tmux - tmux
- vim - vim
- whois - whois
- name: remove basic packages
ansible.builtin.apt: state=absent name=unattended-upgrades
- name: autoremove - name: autoremove
ansible.builtin.apt: autoremove=yes purge=yes ansible.builtin.apt: autoremove=yes purge=yes
- name: autoclean - name: autoclean

View File

@ -165,7 +165,6 @@ desktop_flatpak_packages:
- com.obsproject.Studio - com.obsproject.Studio
- net.minetest.Minetest - net.minetest.Minetest
- org.DolphinEmu.dolphin-emu - org.DolphinEmu.dolphin-emu
- org.getmonero.Monero
- org.mozilla.firefox - org.mozilla.firefox
- remote: flathub-beta - remote: flathub-beta
packages: packages:

View File

@ -16,3 +16,5 @@
alternatives: name=default.plymouth path=/usr/share/plymouth/themes/bgrt/bgrt.plymouth alternatives: name=default.plymouth path=/usr/share/plymouth/themes/bgrt/bgrt.plymouth
notify: regen initramfs notify: regen initramfs
when: ansible_os_family != "Gentoo" when: ansible_os_family != "Gentoo"
- name: ensure unattended-upgrades is installed
ansible.builtin.apt: name=unattended-upgrades state=present