--- ########################################################################### # # 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 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