| 123456789101112131415161718192021222324252627282930313233343536 | # This is the default ansible 'hosts' file.## It should live in /etc/ansible/hosts##   - Comments begin with the '#' character#   - Blank lines are ignored#   - Groups of hosts are delimited by [header] elements#   - You can enter hostnames or ip addresses#   - A hostname/ip can be a member of multiple groups---all:  ansible_port: 24  ansible_user: m-an  ansible_become: trueapu:  hosts:    gmuend:      ansible_host: 192.168.2.60      ansible_become_password: "{{ gmuend_password }}"desktops:  hosts:    gmuendlap:      ansible_host: 192.168.2.61      ansible_become_pass: '{{ gmuendlap_password }}'    gmuend2lap:      ansible_host: 192.xxx      ansible_become_pass: '{{ gmuend2lap_pw }}'#  127.0.0.1:24#  gmuend.ffdo.net:24 ansible_user=m-an ansible_become=true #  hoerde.ffdo.net:24 ansible_user=maselmann ansible_become=true ansible_become_method=su#  194.104.114.172:24 ansible_user=maselmann ansible_become=true ansible_become_method=sudo#	nordstadt.ffdo.net:24  hat kein python, garkeins!
 |