--- ########################################################################### # # 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 pfetch.yml # # ie, # ansible-playbook -i 192.168.1.123, pfetch.yml # ########################################################################### - hosts: all gather_facts: true user: root roles: - role: pfetch # EOF