- name: remove unwanted packages gather_facts: no hosts: "{{target}}" become: "{{become_var}}" tasks: - name: clean-up few unwanted packages and daemons apt: state: absent pkg: - fwupd # legacy bios boot and avoid loads of libs - fwupd-signed # legacy bios boot and avoid loads of libs - multipath-tools - python3-update-manager - sosreport # todo - check and get rid of snap packages first #- snapd - ubuntu-advantage-tools - ubuntu-pro-client - ubuntu-pro-client-l10n update_cache: true autoremove: true purge: true when: system == 'debian'