# Display local facts
ansible -m debug -a "var=hostvars[inventory_hostname]" $host
# Display facts from all hosts
ansible all -m setup
# Create role
ansible-galaxy init role_name
# Display local facts
ansible -m debug -a "var=hostvars[inventory_hostname]" $host
# Display facts from all hosts
ansible all -m setup
# Create role
ansible-galaxy init role_name