playbook_pfetch/pfetch.yml

27 lines
623 B
YAML

---
###########################################################################
#
# This is the top level playbook for the 'pfetch' role.
#
# This role will install and configure pfetch to the target host.
#
###########################################################################
#
# This playbook can be run using the following command line;
#
# ansible-playbook -i <inventory file | IP,> pfetch.yml
#
# ie,
# ansible-playbook -i 192.168.1.123, pfetch.yml
#
###########################################################################
- hosts: all
gather_facts: true
user: root
roles:
- role: pfetch
# EOF