playbook_misc-utils/rem_base_pkgs.yml

28 lines
693 B
YAML

---
###########################################################################
#
# This is the top level playbook for the 'rem_base_pkgs' role.
#
# This role removes the packages install in the 'base_pkgs' role. This is
# used for testing the 'base_pkgs' role.
###########################################################################
#
# This playbook can be run using the following command line;
#
# ansible-playbook -i <inventory file | IP,> rem_base_pkgs.yml
#
# ie,
# ansible-playbook -i 192.168.1.123, rem_base_pkgs.yml
#
###########################################################################
- hosts: all
gather_facts: true
user: root
roles:
- rem_base_pkgs
# EOF