playbook_pfetch/pfetch.yml

27 lines
623 B
YAML
Raw Permalink Normal View History

2021-07-23 18:45:46 -04:00
---
###########################################################################
#
# 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
2021-07-23 18:45:46 -04:00
#
# ie,
# ansible-playbook -i 192.168.1.123, pfetch.yml
2021-07-23 18:45:46 -04:00
#
###########################################################################
- hosts: all
gather_facts: true
user: root
roles:
- role: pfetch
# EOF