New structure

This commit is contained in:
2024-03-06 10:56:21 +00:00
parent f717d9ca0d
commit ca5b61e58b
38 changed files with 706 additions and 4 deletions

40
ansible.cfg Normal file
View File

@@ -0,0 +1,40 @@
[defaults]
#nocolor = true
remote_user = ansible
ask_pass = false
host_key_checking = false
# set ansible log path
log_path=/tmp/ansible.log
# enable debugging
#stdout_callback = debug
forks = 50
# transport = local
# additional paths to search for roles in, colon separated
#
# !!! BITTE nicht den /ansible/.. Pfad wegnehmen, der wird fuer die container images benoetigt !!!
roles_path = ./roles:/ansible/roles
library = /ansible/library:/ansible/library/module_utils:./library
#stdout_callback = yaml
#callback_whitelist = timer, mail, ara
#action_plugins = /usr/share/ansible/plugins/action:/home/ansible/.local/lib/python3.6/site-packages/ara/plugins/action
#callback_plugins = /usr/share/ansible/plugins/callback:/home/ansible/.local/lib/python3.6/site-packages/ara/plugins/callback
#lookup_plugins = /usr/share/ansible/plugins/lookup:/home/ansible/.local/lib/python3.6/site-packages/ara/plugins/lookup
#
# or
#
# export ANSIBLE_CALLBACK_PLUGINS=$(python3 -m ara.setup.callback_plugins)
# Set up the ARA callback to know where the API server is located
#export ARA_API_CLIENT="http"
#export ARA_API_SERVER="http://127.0.0.1:8000"
#export ARA_API_USERNAME=ansible
#export ARA_API_PASSWORD=
[ssh_connection]
pipelining = True
#ssh_args = -o ControlMaster=auto -o ControlPersist=1200