mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-23 13:20:23 -07:00
Add configuration to override location of ansible-connection (#46128)
* Add configuration to override location of ansible-connection * Check var or argv[0] before $PATH
This commit is contained in:
parent
d3d812b604
commit
cdaf5bd806
3 changed files with 34 additions and 26 deletions
|
@ -13,6 +13,18 @@ ALLOW_WORLD_READABLE_TMPFILES:
|
|||
type: boolean
|
||||
yaml: {key: defaults.allow_world_readable_tmpfiles}
|
||||
version_added: "2.1"
|
||||
ANSIBLE_CONNECTION_PATH:
|
||||
name: Path of ansible-connection script
|
||||
default: null
|
||||
description:
|
||||
- Specify where to look for the ansible-connection script. This location will be checked before searching $PATH.
|
||||
- If null, ansible will start with the same directory as the ansible script.
|
||||
type: path
|
||||
env: [{name: ANSIBLE_CONNECTION_PATH}]
|
||||
ini:
|
||||
- {key: ansible_connection_path, section: persistent_connection}
|
||||
yaml: {key: persistent_connection.ansible_connection_path}
|
||||
version_added: "2.8"
|
||||
ANSIBLE_COW_SELECTION:
|
||||
name: Cowsay filter selection
|
||||
default: default
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue