adds fix for terminal plugins
This commit is contained in:
parent
18d605a132
commit
6cbc69447b
2 changed files with 10 additions and 2 deletions
|
@ -481,7 +481,6 @@ DEFAULT_CLICONF_PLUGIN_PATH:
|
|||
ini:
|
||||
- {key: cliconf_plugins, section: defaults}
|
||||
type: pathspec
|
||||
yaml: {key: plugins.connection.path}
|
||||
DEFAULT_CONNECTION_PLUGIN_PATH:
|
||||
name: Connection Plugins Path
|
||||
default: ~/.ansible/plugins/connection:/usr/share/ansible/plugins/connection
|
||||
|
@ -1100,6 +1099,14 @@ DEFAULT_TASK_INCLUDES_STATIC:
|
|||
why: include itself is deprecated and this setting will not matter in the future
|
||||
version: "2.8"
|
||||
alternatives: None, as its already built into the decision between include_tasks and import_tasks
|
||||
DEFAULT_TERMINAL_PLUGIN_PATH:
|
||||
name: Terminal Plugins Path
|
||||
default: ~/.ansible/plugins/terminal:/usr/share/ansible/plugins/terminal
|
||||
description: Colon separated paths in which Ansible will search for Terminal Plugins.
|
||||
env: [{name: ANSIBLE_TERMINAL_PLUGINS}]
|
||||
ini:
|
||||
- {key: terminal_plugins, section: defaults}
|
||||
type: pathspec
|
||||
DEFAULT_TEST_PLUGIN_PATH:
|
||||
name: Jinja2 Test Plugins Path
|
||||
description: Colon separated paths in which Ansible will search for Jinja2 Test Plugins.
|
||||
|
|
|
@ -630,8 +630,9 @@ strategy_loader = PluginLoader(
|
|||
terminal_loader = PluginLoader(
|
||||
'TerminalModule',
|
||||
'ansible.plugins.terminal',
|
||||
C.DEFAULT_TERMINAL_PLUGIN_PATH,
|
||||
'terminal_plugins',
|
||||
'terminal_plugins'
|
||||
required_base_class='TerminalBase'
|
||||
)
|
||||
|
||||
vars_loader = PluginLoader(
|
||||
|
|
Loading…
Reference in a new issue