role_rem_base_pkgs/tasks/main.yml

34 lines
707 B
YAML

---
###########################################################################
#
# This role removes the packages install in the 'base_pkgs' role. This is
# used for testing the 'base_pkgs' role.
#
###########################################################################
# tasks file for rem_base_pkgs
- name: Remove list of base packages (Ubuntu/Debian)
apt:
name:
- build-essential
- curl
- dnsutils
- elinks
- git
- htop
- multitail
- net-tools
- pandoc
- pylint
- python3
- python3-pip
- tmux
- tree
- vim
- vim-scripts
- wget
state: absent
when: ansible_os_family == "Debian"
# EOF