From: Guillaume Abrioux Date: Thu, 25 Oct 2018 12:42:54 +0000 (+0200) Subject: tox: fix a typo X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fheads%2Fstable-3.0;p=ceph-ansible.git tox: fix a typo the line setting `ANSIBLE_CONFIG` obviously contains a typo introduced by 1e283bf69be8b9efbc1a7a873d91212ad57c7351 `ANSIBLE_CONFIG` has to point to a path only (path to an ansible.cfg) Signed-off-by: Guillaume Abrioux (cherry picked from commit a0cceb3e44f17f417f1c7d86c51f915dbaf0bd2f) --- diff --git a/tox.ini b/tox.ini index 3a56a1e05..2d9b70053 100644 --- a/tox.ini +++ b/tox.ini @@ -122,7 +122,7 @@ passenv=* sitepackages=True setenv= ANSIBLE_SSH_ARGS = -F {changedir}/vagrant_ssh_config - ANSIBLE_CONFIG = -F {toxinidir}/ansible.cfg + ANSIBLE_CONFIG = {toxinidir}/ansible.cfg ANSIBLE_ACTION_PLUGINS = {toxinidir}/plugins/actions # only available for ansible >= 2.2 ANSIBLE_STDOUT_CALLBACK = debug