hosts 1007 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. # This is the default ansible 'hosts' file.
  2. #
  3. # It should live in /etc/ansible/hosts
  4. #
  5. # - Comments begin with the '#' character
  6. # - Blank lines are ignored
  7. # - Groups of hosts are delimited by [header] elements
  8. # - You can enter hostnames or ip addresses
  9. # - A hostname/ip can be a member of multiple groups
  10. # Ex 1: Ungrouped hosts, specify before any group headers.
  11. #green.example.com
  12. #blue.example.com
  13. #192.168.100.1
  14. #192.168.100.10
  15. # Ex 2: A collection of hosts belonging to the 'webservers' group
  16. #[webservers]
  17. #alpha.example.org
  18. #beta.example.org
  19. #192.168.1.100
  20. #192.168.1.110
  21. # If you have multiple hosts following a pattern you can specify
  22. # them like this:
  23. #www[001:006].example.com
  24. # Ex 3: A collection of database servers in the 'dbservers' group
  25. #[dbservers]
  26. #
  27. #db01.intranet.mydomain.net
  28. #db02.intranet.mydomain.net
  29. #10.25.1.56
  30. #10.25.1.57
  31. # Here's another example of host ranges, this time there are no
  32. # leading 0s:
  33. #db-[99:101]-node.example.com
  34. [thismachine]
  35. 127.0.0.1