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
- vim
- whois
- name: remove basic packages
ansible.builtin.apt: state=absent name=unattended-upgrades
- name: autoremove
ansible.builtin.apt: autoremove=yes purge=yes
- name: autoclean

View File

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

View File

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