Merge pull request #1946 from tgerla/devel

Only inventory "running" EC2 instances. "stopped" is also a valid state ...
pull/4420/head
Michael DeHaan 2013-01-30 16:00:45 -08:00
commit fabb2a61de
1 changed files with 1 additions and 1 deletions

View File

@ -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