From 42aecd33f8f1c335d3eb1d4f34b96524620f842f Mon Sep 17 00:00:00 2001 From: Daniel Hokka Zakrisson Date: Fri, 15 Jun 2012 11:01:30 +0200 Subject: [PATCH 1/2] Allow exclusion of hosts/groups --- lib/ansible/inventory/__init__.py | 25 ++++++++++++++++--------- 1 file changed, 16 insertions(+), 9 deletions(-) diff --git a/lib/ansible/inventory/__init__.py b/lib/ansible/inventory/__init__.py index 2de5634da1b..7d1dfbb0a28 100644 --- a/lib/ansible/inventory/__init__.py +++ b/lib/ansible/inventory/__init__.py @@ -85,15 +85,22 @@ class Inventory(object): patterns = pattern.replace(";",":").split(":") groups = self.get_groups() - for group in groups: - for host in group.get_hosts(): - for pat in patterns: - if group.name == pat or pat == 'all' or self._match(host.name, pat): - #must test explicitly for None because [] means no hosts allowed - if self._restriction==None: - hosts[host.name] = host - elif host.name in self._restriction: - hosts[host.name] = host + for pat in patterns: + if pat.startswith("!"): + pat = pat[1:] + inverted = True + else: + inverted = False + for group in groups: + for host in group.get_hosts(): + if group.name == pat or pat == 'all' or self._match(host.name, pat): + #must test explicitly for None because [] means no hosts allowed + if self._restriction==None or host.name in self._restriction: + if inverted: + if host.name in hosts: + del hosts[host.name] + else: + hosts[host.name] = host return sorted(hosts.values(), key=lambda x: x.name) def get_groups(self): From e30d93106240efe2449cc73baac87217e16e379c Mon Sep 17 00:00:00 2001 From: Daniel Hokka Zakrisson Date: Fri, 15 Jun 2012 18:18:27 +0200 Subject: [PATCH 2/2] Add tests of host exclusions --- test/TestInventory.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/test/TestInventory.py b/test/TestInventory.py index a88236e75d8..883af98dcd8 100644 --- a/test/TestInventory.py +++ b/test/TestInventory.py @@ -99,6 +99,17 @@ class TestInventory(unittest.TestCase): print expected_hosts assert sorted(hosts) == sorted(expected_hosts) + def test_simple_exclude(self): + inventory = self.simple_inventory() + + hosts = inventory.list_hosts("all:!greek") + expected_hosts=['jupiter', 'saturn', 'thor', 'odin', 'loki'] + assert sorted(hosts) == sorted(expected_hosts) + + hosts = inventory.list_hosts("all:!norse:!greek") + expected_hosts=['jupiter', 'saturn'] + assert sorted(hosts) == sorted(expected_hosts) + def test_simple_vars(self): inventory = self.simple_inventory() vars = inventory.get_variables('thor') @@ -136,6 +147,13 @@ class TestInventory(unittest.TestCase): print expected assert vars == expected + def test_complex_exclude(self): + inventory = self.complex_inventory() + + hosts = inventory.list_hosts("nc:!triangle:florida:!orlando") + expected_hosts=['rtp_a', 'rtp_b', 'rtb_c', 'miami'] + assert sorted(hosts) == sorted(expected_hosts) + ###################################################