From 0976b86aa586515f48fedebb24deb974c25195c3 Mon Sep 17 00:00:00 2001 From: Vasu Kulkarni Date: Wed, 19 Dec 2018 08:58:54 -0800 Subject: [PATCH] add a missing comma :( Signed-off-by: Vasu Kulkarni --- teuthology/task/ceph_ansible.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/teuthology/task/ceph_ansible.py b/teuthology/task/ceph_ansible.py index 87f1db9095..79b46e8dd9 100644 --- a/teuthology/task/ceph_ansible.py +++ b/teuthology/task/ceph_ansible.py @@ -133,7 +133,7 @@ class CephAnsible(Task): args = [ 'ANSIBLE_STDOUT_CALLBACK=debug', 'ansible-playbook', '-vv', - '-e', 'check_firewall=false' + '-e', 'check_firewall=false', '-i', 'inven.yml', 'site.yml' ] log.debug("Running %s", args) -- 2.39.5