playbook_misc-utils/base_pkgs.yml

28 lines
676 B
YAML

---
###########################################################################
#
# This is the top level playbook for the 'base_pkgs' role. This role will
# install a selected set of packages as a desired baseline package
# collection.
#
###########################################################################
#
# This playbook can be run using the following command line;
#
# ansible-playbook -i <inventory file | IP,> base_pkgs.yml
#
# ie,
# ansible-playbook -i 192.168.1.123, base_pkgs.yml
#
###########################################################################
- hosts: all
gather_facts: true
user: root
roles:
- update_cache
- base_pkgs
# EOF