Allow multiple patterns to specified, just like Func did.

This commit is contained in:
Michael DeHaan 2012-02-25 17:22:48 -05:00
parent 70ec508ee0
commit cb90df2377

View file

@ -83,7 +83,9 @@ class Runner(object):
return False
if not pattern:
pattern = self.pattern
if fnmatch.fnmatch(host_name, pattern):
subpatterns = pattern.split(";")
for subpattern in subpatterns:
if fnmatch.fnmatch(host_name, subpattern):
return True
return False