mirror of
https://github.com/ansible-collections/ansible.posix.git
synced 2026-01-12 15:45:20 +01:00
16 lines
590 B
Python
16 lines
590 B
Python
# -*- coding: utf-8 -*-
|
|
# Copyright: Ansible Project
|
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
from __future__ import annotations
|
|
|
|
|
|
class ModuleDocFragment(object):
|
|
DOCUMENTATION = r'''
|
|
use_ssh_args:
|
|
description:
|
|
- In Ansible 2.10 and lower, it uses the ssh_args specified in C(ansible.cfg).
|
|
- In Ansible 2.11 and onwards, when set to C(true), it uses all SSH connection configurations like
|
|
C(ansible_ssh_args), C(ansible_ssh_common_args), and C(ansible_ssh_extra_args).
|
|
type: bool
|
|
default: false
|
|
'''
|