File: ansible.cfg

package info (click to toggle)
python-mitogen 0.3.36-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,708 kB
  • sloc: python: 24,457; sh: 198; makefile: 74; perl: 19; ansic: 18
file content (82 lines) | stat: -rw-r--r-- 2,755 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
[defaults]
any_errors_fatal = true
# Ansible >= 6 (ansible-core >= 2.13)
callback_result_format = yaml
# callbacks_enabled was added in Ansible 4 (ansible-core 2.11).
# profile_tasks: Displays timing for each task and summary table of top N tasks
# timer: Displays "Playbook run took 0 days, 0 hours, ..."
callbacks_enabled =
    profile_tasks,
    timer
# callback_whitelist was deprecated in Ansible >= 8 (ansible-core >= 2.15).
callback_whitelist =
    profile_tasks,
    timer
duplicate_dict_key = error
inventory = hosts
gathering = explicit
strategy_plugins = ../../ansible_mitogen/plugins/strategy
inventory_plugins = lib/inventory
action_plugins = lib/action
callback_plugins = lib/callback
vars_plugins = lib/vars
library = lib/modules
filter_plugins = lib/filters
module_utils = lib/module_utils
retry_files_enabled = False
# Ansible >= 4 (ansible-core >= 2.11)
show_task_path_on_failure = true
display_args_to_stdout = True
forks = 100

# We use lots of deprecated functionality to support older versions.
deprecation_warnings = False

# issue #434; hosts/delegate_to; integration/delegate_to
remote_user = ansible-cfg-remote-user

# On MacOS, "smart" with a password set causes Ansible to use paramiko.
transport = ssh

no_target_syslog = True

# Required by integration/ssh/timeouts.yml
timeout = 30

# Ideally this would be true here and and overridden for hosts/groups. However
# ansible_host_key_checking don't work on Vanilla Ansible 2.10, even for
# static inventory hosts (ansible/ansible#49254, ansible/ansible#73708)
host_key_checking = False

[inventory]
# Fatal error if any inventory source is unparsed by every available plugin.
any_unparsed_is_failed = true
# Fatal error if no inventory sources have a match for a host pattern.
host_pattern_mismatch = error
ignore_extensions = ~, .bak, .disabled
# Fatal error if no inventory sources are successfully parsed.
unparsed_is_failed = true

[callback_profile_tasks]
task_output_limit = 10

[ssh_connection]
# https://www.openssh.com/legacy.html
# ssh-rsa uses SHA1. Least worst available with CentOS 7 sshd.
# Rejected by default in newer ssh clients (e.g. Ubuntu 22.04).
# Duplicated cases in
#   - tests/ansible/ansible.cfg
#   - tests/ansible/integration/connection_delegation/delegate_to_template.yml
#   - tests/ansible/integration/connection_delegation/stack_construction.yml
#   - tests/ansible/integration/process/unix_socket_cleanup.yml
#   - tests/ansible/integration/ssh/variables.yml
#   - tests/testlib.py
ssh_args =
    -o ControlMaster=auto
    -o ControlPersist=60s
    -o ForwardAgent=yes
    -o HostKeyAlgorithms=+ssh-rsa
    -o KexAlgorithms=+diffie-hellman-group1-sha1
    -o PubkeyAcceptedKeyTypes=+ssh-rsa
    -o UserKnownHostsFile=/dev/null
pipelining = True