From 29a3bb744efe0e3815ffe6d1053d9feeae6d4584 Mon Sep 17 00:00:00 2001 From: a-sk Date: Sat, 21 Dec 2013 02:34:07 +0400 Subject: [PATCH] Remove quotes aroung etcd_url value I get errors like this with etcd_url = 'http://127.0.0.1:4001': urllib2.URLError: --- examples/ansible.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/ansible.cfg b/examples/ansible.cfg index 2a1e6687125..93e01a9fce3 100644 --- a/examples/ansible.cfg +++ b/examples/ansible.cfg @@ -103,7 +103,7 @@ filter_plugins = /usr/share/ansible_plugins/filter_plugins #nocolor = 1 # default URL for `etcd' lookup plugin -etcd_url = 'http://127.0.0.1:4001' +etcd_url = http://127.0.0.1:4001 [paramiko_connection]