-
Notifications
You must be signed in to change notification settings - Fork 82
/
ansible.cfg
27 lines (24 loc) · 1.07 KB
/
ansible.cfg
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
################################################################################
# Copyright (c) IBM Corporation 2020
################################################################################
################################################################################
# For for on ansible.cfg options see:
# https://docs.ansible.com/ansible/latest/reference_appendices/config.html
#
# For a full sample see:
# https://github.com/ansible/ansible/blob/devel/examples/ansible.cfg
#
# Note:
# Some of the common options configured are `remote_temp` and `ansible_port`.
# remote_temp - The temporary directory Ansible uses to transfer files onto
# the controller. Default is `/.ansible/tmp`
# ansible_port - The connection port number Ansible uses to connect to the
# target; configure the target if is not using default SSH
# port 22
################################################################################
[defaults]
forks = 25
# remote_tmp = /u/ansible/tmp
# remote_port = 2022
[ssh_connection]
pipelining = false