diff options
author | Thomas Wiest <twiest@redhat.com> | 2014-12-18 12:59:55 -0500 |
---|---|---|
committer | Thomas Wiest <twiest@redhat.com> | 2014-12-18 13:22:53 -0500 |
commit | e1cebec7c5f1504512121de83d06afa0d1ecd21c (patch) | |
tree | aba523ff59e6919bb1ef5bad9737f48ec023912e | |
parent | cf1b6517343189451bbfd64564e0fa3b2f346023 (diff) | |
download | openshift-e1cebec7c5f1504512121de83d06afa0d1ecd21c.tar.gz openshift-e1cebec7c5f1504512121de83d06afa0d1ecd21c.tar.bz2 openshift-e1cebec7c5f1504512121de83d06afa0d1ecd21c.tar.xz openshift-e1cebec7c5f1504512121de83d06afa0d1ecd21c.zip |
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.
-rwxr-xr-x | inventory/multi_ec2.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/inventory/multi_ec2.py b/inventory/multi_ec2.py index 97fd10f36..d8c2dc854 100755 --- a/inventory/multi_ec2.py +++ b/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 " \ |