2024-11-29 09:12:11 +00:00
|
|
|
[defaults]
|
|
|
|
|
|
|
|
# Inventory
|
|
|
|
inventory = ./hosts.ini
|
2024-11-29 13:16:39 +00:00
|
|
|
inventory_plugins = ./plugins/inventory
|
2024-11-29 09:12:11 +00:00
|
|
|
|
|
|
|
# Roles paths
|
|
|
|
roles_path = ./roles:./roles.extern:./roles.webcluster:/etc/ansible/roles
|
|
|
|
|
|
|
|
# Interpreter Discovery - Ohne Warnings
|
|
|
|
interpreter_python = auto_silent
|
|
|
|
|
2024-11-29 13:16:39 +00:00
|
|
|
# Zusätzliche Module
|
|
|
|
library = ./plugins/modules
|
|
|
|
|
2024-11-29 09:12:11 +00:00
|
|
|
# SSH
|
|
|
|
remote_user = root
|
|
|
|
#host_key_checking = False
|
|
|
|
|
|
|
|
# Retry files
|
|
|
|
retry_files_enabled = yes
|
|
|
|
retry_files_save_path = ./.cache/Retry/
|
|
|
|
|
|
|
|
# Log files
|
|
|
|
#log_path = ./log/ansible.log
|
|
|
|
|
|
|
|
# Fact caching
|
|
|
|
gathering = smart
|
|
|
|
fact_caching_timeout = 86400
|
|
|
|
fact_caching = yaml
|
|
|
|
fact_caching_connection = ./.cache/facts/
|
|
|
|
|
|
|
|
# Farben ausschalten
|
|
|
|
#nocolor = 1
|
|
|
|
|
|
|
|
[colors]
|
|
|
|
# Für dunklen Hintergrund in der Console
|
|
|
|
verbose = bright blue
|
|
|
|
debug = bright gray
|
|
|
|
error = bright red
|
|
|
|
|