Commit 643690ff by Michael DeHaan

Remove depedency of lookup plugin on setting in ansible.cfg

parent 5b3c7966
...@@ -23,8 +23,11 @@ try: ...@@ -23,8 +23,11 @@ try:
except ImportError: except ImportError:
import simplejson as json import simplejson as json
# this can be made configurable, not should not use ansible.cfg
ANSIBLE_ETCD_URL = 'http://127.0.0.1:4001'
class etcd(): class etcd():
def __init__(self, url='http://127.0.0.1:4001'): def __init__(self, url=ANSIBLE_ETCD_URL)
self.url = url self.url = url
self.baseurl = '%s/v1/keys' % (self.url) self.baseurl = '%s/v1/keys' % (self.url)
...@@ -56,7 +59,7 @@ class LookupModule(object): ...@@ -56,7 +59,7 @@ class LookupModule(object):
def __init__(self, basedir=None, **kwargs): def __init__(self, basedir=None, **kwargs):
self.basedir = basedir self.basedir = basedir
self.etcd = etcd(constants.ANSIBLE_ETCD_URL) self.etcd = etcd()
def run(self, terms, inject=None, **kwargs): def run(self, terms, inject=None, **kwargs):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment