diff options
author | Kenny Woodson <kwoodson@redhat.com> | 2014-12-12 15:12:43 -0500 |
---|---|---|
committer | Kenny Woodson <kwoodson@redhat.com> | 2014-12-12 15:12:43 -0500 |
commit | 58e392c3243feaed8c0fff0f637279aa88f7467b (patch) | |
tree | 47015ac0ee1fd6dd7e8557a321d75113495b8951 | |
parent | f6dfc719d88fc0fd41a114f4ec0d670e962da0b8 (diff) | |
download | openshift-58e392c3243feaed8c0fff0f637279aa88f7467b.tar.gz openshift-58e392c3243feaed8c0fff0f637279aa88f7467b.tar.bz2 openshift-58e392c3243feaed8c0fff0f637279aa88f7467b.tar.xz openshift-58e392c3243feaed8c0fff0f637279aa88f7467b.zip |
Fixed naming for chache file.
-rwxr-xr-x | inventory/multi_ec2.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/inventory/multi_ec2.py b/inventory/multi_ec2.py index 97f158e8a..e569b56d5 100755 --- a/inventory/multi_ec2.py +++ b/inventory/multi_ec2.py @@ -17,7 +17,7 @@ class MultiEc2(object): self.config = None self.results = {} self.result = {} - self.cache_path_cache = os.path.expanduser('~/.ansible/tmp/meta-inventory.cache') + self.cache_path_cache = os.path.expanduser('~/.ansible/tmp/multi_ec2_inventory.cache') self.parse_cli_args() |