1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Merge branch 'allow_types_in_ini' of https://github.com/bcoca/ansible into bcoca-allow_types_in_ini

This commit is contained in:
James Cammarata 2013-09-30 22:56:07 -05:00
commit 12a21d94b7

View file

@ -25,6 +25,7 @@ from ansible.inventory.expand_hosts import expand_hostname_range
from ansible import errors
import shlex
import re
import ast
class InventoryParser(object):
"""
@ -116,7 +117,7 @@ class InventoryParser(object):
(k,v) = t.split("=")
except ValueError, e:
raise errors.AnsibleError("Invalid ini entry: %s - %s" % (t, str(e)))
host.set_variable(k,v)
host.set_variable(k,ast.literal_eval(v))
self.groups[active_group_name].add_host(host)
# [southeast:children]