Browse Source

Merge pull request #43 from twiest/pr

fixed bug in multi_ec2.py where it was only allowing relatively path'd providers if you ran multi_ec2.py from the inventory directory.
Kenny Woodson 10 years ago
parent
commit
621dec2791
1 changed files with 4 additions and 0 deletions
  1. 4 0
      inventory/multi_ec2.py

+ 4 - 0
inventory/multi_ec2.py

@@ -75,6 +75,10 @@ class MultiEc2(object):
         if not env:
             env = os.environ
 
+        # Allow relatively path'd providers in config file
+        if os.path.isfile(os.path.join(self.file_path, provider)):
+            provider = os.path.join(self.file_path, provider)
+
         # check to see if provider exists
         if not os.path.isfile(provider) or not os.access(provider, os.X_OK):
             raise RuntimeError("Problem with the provider.  Please check path " \