Merge pull request #1946 from tgerla/devel

Only inventory "running" EC2 instances. "stopped" is also a valid state ...
pull/1948/head^2
Michael DeHaan 12 years ago
commit fabb2a61de

@ -274,7 +274,7 @@ class Ec2Inventory(object):
addressable '''
# Only want running instances
if instance.state == 'terminated':
if instance.state != 'running':
return
# Select the best destination address

Loading…
Cancel
Save