mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-30 13:00:56 +00:00
Allow = symbols in variable values in host inventory
This commit is contained in:
parent
c45f166235
commit
47f5909167
1 changed files with 1 additions and 1 deletions
|
|
@ -119,7 +119,7 @@ class InventoryParser(object):
|
|||
if t.startswith('#'):
|
||||
break
|
||||
try:
|
||||
(k,v) = t.split("=")
|
||||
(k,v) = t.split("=", 1)
|
||||
except ValueError, e:
|
||||
raise errors.AnsibleError("Invalid ini entry: %s - %s" % (t, str(e)))
|
||||
try:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue