Fixes default format of network_group_modules to ini list. Removing trailing whitespaces from comments for style consistency. Fixes #26154 (#32460)
This commit is contained in:
parent
27188d46a9
commit
9d4e0a8acb
1 changed files with 10 additions and 10 deletions
|
@ -51,7 +51,7 @@
|
||||||
# with a maximum timeout of 10 seconds. This
|
# with a maximum timeout of 10 seconds. This
|
||||||
# option lets you increase or decrease that
|
# option lets you increase or decrease that
|
||||||
# timeout to something more suitable for the
|
# timeout to something more suitable for the
|
||||||
# environment.
|
# environment.
|
||||||
# gather_timeout = 10
|
# gather_timeout = 10
|
||||||
|
|
||||||
# additional paths to search for roles in, colon separated
|
# additional paths to search for roles in, colon separated
|
||||||
|
@ -295,7 +295,7 @@
|
||||||
|
|
||||||
# This family of modules use an alternative execution path optimized for network appliances
|
# This family of modules use an alternative execution path optimized for network appliances
|
||||||
# only update this setting if you know how this works, otherwise it can break module execution
|
# only update this setting if you know how this works, otherwise it can break module execution
|
||||||
#network_group_modules=['eos', 'nxos', 'ios', 'iosxr', 'junos', 'vyos']
|
#network_group_modules=eos, nxos, ios, iosxr, junos, vyos
|
||||||
|
|
||||||
# When enabled, this option allows lookups (via variables like {{lookup('foo')}} or when used as
|
# When enabled, this option allows lookups (via variables like {{lookup('foo')}} or when used as
|
||||||
# a loop with `with_foo`) to return data that is not marked "unsafe". This means the data may contain
|
# a loop with `with_foo`) to return data that is not marked "unsafe". This means the data may contain
|
||||||
|
@ -356,16 +356,16 @@
|
||||||
# paramiko on older platforms rather than removing it, -C controls compression use
|
# paramiko on older platforms rather than removing it, -C controls compression use
|
||||||
#ssh_args = -C -o ControlMaster=auto -o ControlPersist=60s
|
#ssh_args = -C -o ControlMaster=auto -o ControlPersist=60s
|
||||||
|
|
||||||
# The base directory for the ControlPath sockets.
|
# The base directory for the ControlPath sockets.
|
||||||
# This is the "%(directory)s" in the control_path option
|
# This is the "%(directory)s" in the control_path option
|
||||||
#
|
#
|
||||||
# Example:
|
# Example:
|
||||||
# control_path_dir = /tmp/.ansible/cp
|
# control_path_dir = /tmp/.ansible/cp
|
||||||
#control_path_dir = ~/.ansible/cp
|
#control_path_dir = ~/.ansible/cp
|
||||||
|
|
||||||
# The path to use for the ControlPath sockets. This defaults to a hashed string of the hostname,
|
# The path to use for the ControlPath sockets. This defaults to a hashed string of the hostname,
|
||||||
# port and username (empty string in the config). The hash mitigates a common problem users
|
# port and username (empty string in the config). The hash mitigates a common problem users
|
||||||
# found with long hostames and the conventional %(directory)s/ansible-ssh-%%h-%%p-%%r format.
|
# found with long hostames and the conventional %(directory)s/ansible-ssh-%%h-%%p-%%r format.
|
||||||
# In those cases, a "too long for Unix domain socket" ssh error would occur.
|
# In those cases, a "too long for Unix domain socket" ssh error would occur.
|
||||||
#
|
#
|
||||||
# Example:
|
# Example:
|
||||||
|
@ -404,8 +404,8 @@
|
||||||
[persistent_connection]
|
[persistent_connection]
|
||||||
|
|
||||||
# Configures the persistent connection timeout value in seconds. This value is
|
# Configures the persistent connection timeout value in seconds. This value is
|
||||||
# how long the persistent connection will remain idle before it is destroyed.
|
# how long the persistent connection will remain idle before it is destroyed.
|
||||||
# If the connection doesn't receive a request before the timeout value
|
# If the connection doesn't receive a request before the timeout value
|
||||||
# expires, the connection is shutdown. The default value is 30 seconds.
|
# expires, the connection is shutdown. The default value is 30 seconds.
|
||||||
#connect_timeout = 30
|
#connect_timeout = 30
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue