Browse Source

Merge branch 'master' into add_multi_tests

Kenny Woodson 10 years ago
parent
commit
176065b2e6
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 " \