Browse Source

gather_facts

master
Olli Graf 1 year ago
parent
commit
08e1f406d3
  1. 12
      ansible.cfg
  2. 1974
      facts_brandine.txt
  3. 1538
      facts_quimby.txt
  4. 1478
      facts_terry.txt
  5. 6
      gather_facts.yml
  6. 1
      inventory.yml
  7. 3
      roles/gather-facts/tasks/main.yml

12
ansible.cfg

@ -0,0 +1,12 @@
[defaults]
inventory = inventory.yml
interpreter_python = auto_silent
nocows = 1
timeout= 60
force_valid_group_names = ignore
#private_key_file = ~/.ssh/id_ed25519
private_key_file = ~/.ssh/id_rsa
[ssh_connection]
ssh_args = -o StrictHostKeyChecking=no

1974
facts_brandine.txt

File diff suppressed because it is too large

1538
facts_quimby.txt

File diff suppressed because it is too large

1478
facts_terry.txt

File diff suppressed because it is too large

6
gather_facts.yml

@ -0,0 +1,6 @@
- hosts: "{{ target }}"
gather_facts: true
remote_user: pi
roles:
- gather-facts

1
inventory.yml

@ -4,6 +4,7 @@ stack4:
willie:
kirk:
brandine:
terry:
webs:
hosts:

3
roles/gather-facts/tasks/main.yml

@ -0,0 +1,3 @@
- name: Informationen sammeln
ansible.builtin.debug:
var: ansible_facts
Loading…
Cancel
Save