ansible.posix/plugins/doc_fragments/synchronize.py
Adam Miller 280af6e372 refactor to comply with current ansible-lint guidelines
Signed-off-by: Adam Miller <admiller@redhat.com>
2023-12-04 12:08:52 -06:00

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
'''