mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-08 22:33:25 +00:00
Fix using non-ascii for inventory hostname patterns with the CLI.
This commit is contained in:
@@ -32,6 +32,7 @@ from ansible.parsing.splitter import parse_kv
|
|||||||
from ansible.playbook.play import Play
|
from ansible.playbook.play import Play
|
||||||
from ansible.plugins import get_all_plugin_loaders
|
from ansible.plugins import get_all_plugin_loaders
|
||||||
from ansible.utils.vars import load_extra_vars
|
from ansible.utils.vars import load_extra_vars
|
||||||
|
from ansible.utils.unicode import to_unicode
|
||||||
from ansible.vars import VariableManager
|
from ansible.vars import VariableManager
|
||||||
|
|
||||||
try:
|
try:
|
||||||
@@ -95,7 +96,7 @@ class AdHocCLI(CLI):
|
|||||||
super(AdHocCLI, self).run()
|
super(AdHocCLI, self).run()
|
||||||
|
|
||||||
# only thing left should be host pattern
|
# only thing left should be host pattern
|
||||||
pattern = self.args[0]
|
pattern = to_unicode(self.args[0])
|
||||||
|
|
||||||
# ignore connection password cause we are local
|
# ignore connection password cause we are local
|
||||||
if self.options.connection == "local":
|
if self.options.connection == "local":
|
||||||
|
|||||||
Reference in New Issue
Block a user