Return a copy of the host variables.
This commit is contained in:
parent
961ccdb2f4
commit
8c3206c99f
2 changed files with 10 additions and 1 deletions
|
@ -82,7 +82,7 @@ class Inventory(object):
|
||||||
""" Return the variables associated with this host. """
|
""" Return the variables associated with this host. """
|
||||||
|
|
||||||
if host in self._variables:
|
if host in self._variables:
|
||||||
return self._variables[host]
|
return self._variables[host].copy()
|
||||||
|
|
||||||
if not self._is_script:
|
if not self._is_script:
|
||||||
return {}
|
return {}
|
||||||
|
|
|
@ -219,6 +219,15 @@ class TestInventory(unittest.TestCase):
|
||||||
|
|
||||||
assert vars == {"hammer":True}
|
assert vars == {"hammer":True}
|
||||||
|
|
||||||
|
def test_yaml_change_vars(self):
|
||||||
|
inventory = self.yaml_inventory()
|
||||||
|
vars = inventory.get_variables('thor')
|
||||||
|
|
||||||
|
vars["hammer"] = False
|
||||||
|
|
||||||
|
vars = inventory.get_variables('thor')
|
||||||
|
assert vars == {"hammer":True}
|
||||||
|
|
||||||
def test_yaml_host_vars(self):
|
def test_yaml_host_vars(self):
|
||||||
inventory = self.yaml_inventory()
|
inventory = self.yaml_inventory()
|
||||||
vars = inventory.get_variables('saturn')
|
vars = inventory.get_variables('saturn')
|
||||||
|
|
Loading…
Reference in a new issue