Commit 60a13cf5 by Michael DeHaan

Ignore commented out lines in the ansible setup files.

parent e284c8ce
......@@ -127,10 +127,16 @@ class Runner(object):
group_name = 'ungrouped'
results = []
for item in lines:
item = item.lstrip().rstrip()
if item.startswith("#"):
# ignore commented out lines
continue
if item.startswith("["):
# looks like a group
group_name = item.replace("[","").replace("]","").lstrip().rstrip()
groups[group_name] = []
else:
# looks like a regular host
groups[group_name].append(item)
results.append(item)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment